var closeTips=function(){
$(document).mousedown(function(e) {
var pop = $('目标区域');
if(!pop.is(e.target) && pop.has(e.target).length === 0) { //点击对象不是目标区域本身,也不是目标区域的子元素
$('目标区域').hide();
some code...//功能代码
}
})
}
//手机$(document)触发不到,就需要添加一层蒙版
网友评论