元素之外点击

1
2
3
4
5
6
7
// 元素外点击
$(document).bind('click', function (e) {
var target = $(e.target);
if (target.closest('#notThis').length == 0) {
console.log('点击document(排除id为notThis地方)触发', target);
}
});

编辑文章✏