首页 > 代码库 > jquery点击弹框外层关闭弹框

jquery点击弹框外层关闭弹框

$(document).bind("click",function(e){
            if($( e.target ).closest(".game-container").length == 0){
                alert(111);
                $(".game-container").hide();//game-container是弹框的样式名称
            }else{
                alert(222);//这里是点击弹框的事件
            }
        })