본문 바로가기
[기타자료]

마우스 오른쪽 메뉴 사용금지 및 드래그 사용금지

by BEST-BK 2022. 9. 8.
반응형

마우스 오른쪽 메뉴 사용금지 및 드래그 사용금지

 

 

사용방법


사용방법은 아래 script를 head 사이에 넣으시면 됩니다.

 

<script>
    $(document).ready(function() {
        $(document).bind("contextmenu", function(e){
            alert("마우스 오른쪽 메뉴 사용금지");
            return false;
        });
        $('img').bind("contextmenu",function(e){
            alert("이미지에서 마우스 오른쪽 메뉴 사용금지");
            return false;
        });
        $('img').bind("selectstart",function(e){
            alert("이미지에서 마우스 오른쪽 메뉴 사용금지");
            return false;
        });
    });


    document.oncontextmenu=function(){return false;} // 마우스 오른쪽 메뉴 사용금지


    document.onselectstart=function(){return false;} // 마우스 드래그 금지


    document.ondragstart=function(){return false;} // 마우스 선택 금지


    document.onmousedown=function(){return false;}


</script>

 

 

 

위 소스를  텍스트로 작성하여  파일 올려드립니다. ㅎㅎ

 

마우스 오른쪽 메뉴 사용금지 및 드래그 사용금지.txt
0.00MB

 

반응형

댓글