All files / evt occurInside.js

100% Statements 8/8
85.71% Branches 6/7
100% Functions 1/1
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31                                  2x 2x 2x 8x 1x   7x     1x     1x  
/**
 * 判断事件是否发生在一个 Dom 元素内。
 * - 常用于判断点击事件发生在浮层外时关闭浮层。
 * @method evt/occurInside
 * @param {Object} event 浏览器事件对象
 * @param {Object} node 用于比较事件发生区域的 Dom 对象
 * @returns {Boolean} 事件是否发生在 node 内
 * @example
 * var $occurInside = require('@spore-ui/kit/packages/evt/occurInside');
 * $('.layer').on('click', function(evt){
 *   if($occurInside(evt, $(this).find('close').get(0))){
 *     $(this).hide();
 *   }
 * });
 */
 
function occurInside(event, node) {
  Eif (node && event && event.target) {
    var pos = event.target;
    while (pos) {
      if (pos === node) {
        return true;
      }
      pos = pos.parentNode;
    }
  }
  return false;
}
 
module.exports = occurInside;