元素之外点击 1234567// 元素外点击$(document).bind('click', function (e) { var target = $(e.target); if (target.closest('#notThis').length == 0) { console.log('点击document(排除id为notThis地方)触发', target); }}); 编辑文章✏