| ダイアログボックスによる右クリック禁止。 |
| ※画面上で右クリックするとダイアログが表示されます。 |
| ■<head>〜</head>内に下記を貼り付けてください。 |
<script language="JavaScript">
<!--
function notes(eve){
if(document.all){
if(event.button == 2){
alert("右クリック禁止!");
return false;
}
}
if(document.layers){
if(eve.which == 3){
alert("右クリック禁止!");
return false;
}
}
}
if(document.layers)document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=notes;
//-->
</script> |
| ■<body>〜</body>内に下記を貼り付けてください。 |
| 不 要 |