右クリック禁止Script

右クリックしてみて下さい

<html>
<head>
  <title>右クリック禁止スクリプト サンプル</title>
  <script Language="JavaScript">
  <!--
    var message = '右クリック禁止!';
    var ie = document.all;
    var n4 = document.layers;
    var n6 = document.getElementByld && !ie;
    function myHandler(ev)
     {
       if (ie && (event.button==2))
         {alert(message);return false;}
       if ((n6) && ev.button==2)
         {alert(message);}
     }
    if(n4) document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = myHandler;
    document.onmouseup   = myHandler;
  -->
  </script>
</head>
<body>
  右クリックしてみて下さい
</body>
</html>

<< Back   Index   Next >>  < Top >