美文网首页
js点击遮罩,遮罩和弹出框全部隐藏

js点击遮罩,遮罩和弹出框全部隐藏

作者: 新篇章 | 来源:发表于2017-10-24 18:31 被阅读0次
    $(function()
    {
        $(document).on("click", '.popWndCanopyCom',function(event)
        {
            event.stopPropagation();
            $('.popWndCanopyCom').hide();
        });
    
        $(document).on("click", ".popWindowCom", function(event)
        {
            event.stopPropagation();
            return false;
        });
    })
    

    相关文章

      网友评论

          本文标题:js点击遮罩,遮罩和弹出框全部隐藏

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