js点击遮罩,遮罩和弹出框全部隐藏
2017-10-24 本文已影响0人
新篇章
$(function()
{
$(document).on("click", '.popWndCanopyCom',function(event)
{
event.stopPropagation();
$('.popWndCanopyCom').hide();
});
$(document).on("click", ".popWindowCom", function(event)
{
event.stopPropagation();
return false;
});
})