>即時新聞-熱門

2007年12月12日星期三

javascript教學 - 防止右鍵

現在有很多軟體都可以做到此一功能 , 但我還是決定寫下來
<script language="JavaScript">
if (navigator.appName.indexOf("Internet Explorer") != -1) 
document.onmousedown = noSourceExplorer;
function noSourceExplorer(){
if (event.button == 2 | event.button == 3)
{  window.alert("不要亂亂按玩了")  }

</script>
不要忘記複製後 請自行轉半型
以下解說
<script language="JavaScript"> : 程式開始
</script> : 程式結束
if (navigator.appName.indexOf("Internet Explorer") != -1) : 判斷瀏灠器類型
document.onmousedown = noSourceExplorer; : 按一滑鼠任何鍵進行呼叫副程式
function noSourceExplorer(){if (event.button == 2 | event.button == 3){  window.alert("不要亂亂按玩了")  }: 副程式內容
if (event.button == 2 | event.button == 3):判斷按了哪一鍵 ,1 : 左鍵 , 2 或 3 : 是右鍵
window.alert("不要亂亂按玩了") : 視窗訊息

註 : 請將此程式置於</head>之前

 
妹咕數位學園歡迎網友們來信指教 妹咕信箱