$(function()
{
$(document).on("click", '.popWndCanopyCom',function(event)
{
event.stopPropagation();
$('.popWndCanopyCom').hide();
});
$(document).on("click", ".popWindowCom", function(event)
{
event.stopPropagation();
return false;
});
})
网友评论