마우스 오른쪽 매뉴활성화 막는 간단한 방법입니다

· 10년 전 · 387

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<meta http-equiv="content-type" content="text/html; charset=utf-8">

 


    <title>jQuery disable right click easily</title>

    <script language="javascript" type="text/javascript"

      src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">

    </script>

    <script type="text/javascript" language="javascript">

        $(function() {

            $(this).bind("contextmenu", function(e) {

                e.preventDefault();

            });

        });

    </script>

</head>

<body>

    <p>오른쪽 버튼 활성화 못하게 하기</p>

</body>

</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 338
10년 전 조회 355
10년 전 조회 367
10년 전 조회 462
10년 전 조회 351
10년 전 조회 1,122
10년 전 조회 1,256
10년 전 조회 638
10년 전 조회 362
10년 전 조회 423
10년 전 조회 413
10년 전 조회 542
10년 전 조회 388
10년 전 조회 500
10년 전 조회 338
10년 전 조회 324
10년 전 조회 335
10년 전 조회 369
10년 전 조회 362
10년 전 조회 399
10년 전 조회 409
10년 전 조회 382
10년 전 조회 542
10년 전 조회 553
10년 전 조회 314