美文网首页
jQuery点击空白处关闭弹出窗口

jQuery点击空白处关闭弹出窗口

作者: jadn | 来源:发表于2016-09-06 11:15 被阅读188次

html:

$(function() {

$(document).bind("click",function(e){

var target  = $(e.target); //表示当前对象,切记,如果没有e这个参数,即表示整个BODY对象

if(target.closest(".nav_right").length == 0){

$(".nav_pop_view").hide();

}

})

$(".nav_right").click(function() {

$('.nav_pop_view').hide();

$(this).find("ul").show();

});

});

相关文章

网友评论

      本文标题:jQuery点击空白处关闭弹出窗口

      本文链接:https://www.haomeiwen.com/subject/mojdettx.html