빈 곳을 클릭하여 해당 요소를 숨깁니다.

1258 단어

빈 곳을 클릭하여 해당 요소를 숨깁니다.


배치


控制

  $(function(){
            $(".btn").click(function(event){
                var e=window.event || event;
                if(e.stopPropagation){
                    e.stopPropagation();
                }else{
                    e.cancelBubble = true;
                }
                $("#box").show();
            });
            $("#box").click(function(event){
                var e=window.event || event;
                if(e.stopPropagation){
                    e.stopPropagation();
                }else{
                    e.cancelBubble = true;
                }
            });
            document.onclick = function(){
                $("#box").hide();
            };
        })

혹은
 $(document).mouseup(function(e){
        var _con = $('.box');   //  
        if(!_con.is(e.target) && _con.has(e.target).length === 0){ // Mark 1
            $(".box").hide();
            console.log(1)
        }else{
            console.log(2)
        }
    });

이것들은 모두 이해할 수 있는 부재 상해 끝!!!!!!!!

좋은 웹페이지 즐겨찾기