jquery 탄창 밖으로 클릭하여 탄창을 닫습니다

549 단어
jquery 탄창 밖으로 클릭하여 탄창을 닫습니다
방법1:
$(document).click(function(event){
    var _con = $(".select3_box");
    if(!_con.is(event.target) && (_con.has(event.target).length ===0)){
        _con.remove();
        $(mythis).show();
    }
});

방법2:
$(document).click(function(event){
    $(".select3_box").hide();
    $(mythis).show();
});

$(document).delegate(".select3_box","click",function(event){
    event.stopPropagation();
    console.log("ok");
})

좋은 웹페이지 즐겨찾기