jquery 点击弹窗之外的地方,关闭?弹窗

jquery 点击弹窗之外的地方,关闭弹窗

方法一:

$(document).click(function(event){
    var _con = $(".select3_box");
    if(!_con.is(event.target) && (_con.has(event.target).length ===0)){
        _con.remove();
        $(mythis).show();
    }
});



方法二:

$(document).click(function(event){
    $(".select3_box").hide();
    $(mythis).show();
});

$(document).delegate(".select3_box","click",function(event){
    event.stopPropagation();
    console.log("ok");
})



郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。