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

· 10년 전 · 353

<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년 전 조회 304
10년 전 조회 319
10년 전 조회 335
10년 전 조회 429
10년 전 조회 322
10년 전 조회 1,098
10년 전 조회 1,217
10년 전 조회 612
10년 전 조회 335
10년 전 조회 388
10년 전 조회 381
10년 전 조회 509
10년 전 조회 354
10년 전 조회 468
10년 전 조회 307
10년 전 조회 292
10년 전 조회 304
10년 전 조회 338
10년 전 조회 317
10년 전 조회 367
10년 전 조회 371
10년 전 조회 348
10년 전 조회 513
10년 전 조회 516
10년 전 조회 284