[jquery] 遮罩弹窗,点击遮罩弹窗自动隐藏

$("#id_sign_forbidden_win .c-content").click(function(event){
		event.stopPropagation(); // 阻止点击事件的冒泡
    });
    $("#id_sign_forbidden_win").bind("click" , function(eventBody){
        $("#id_sign_forbidden_win").hide();
    });
原文地址:https://www.cnblogs.com/shuman/p/5128378.html