点击空白处关闭弹窗

// 点击空白处关闭弹窗

            $(document).click(function(event){

                let _con=$(".income_box");   //此处为元素,点击此元素不关闭弹窗

                if(!_con.is(event.target) && _con.has(event.target).length===0){

                    $(".income_box").hide(300);

                }

            })

你可能感兴趣的:(点击空白处关闭弹窗)