DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> 禁止IE用右鍵的JS代碼
禁止IE用右鍵的JS代碼
編輯:JavaScript綜合知識     

 這篇文章主要介紹了禁止IE用右鍵的JS代碼,有需要的朋友可以參考一下

代碼如下: <!--禁止網頁右鍵: -->   document.body.oncontextmenu=function rightClick(){ window.event.returnValue= false;}   <!--禁止網頁另存為: -->  <noscript><iframe src=*.html></iframe></noscript>    <!-- 禁止選擇文本: -->  <script type="text/javascript">    var omitformtags=["input", "textarea", "select"]    omitformtags=omitformtags.join("|")    function disableselect(e){  if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)  return false  }    function reEnable(){  return true  }    if (typeof document.onselectstart!="undefined")  document.onselectstart=new Function ("return false")  else{  document.onmousedown=disableselect  document.onmouseup=reEnable  }  </script>    <!-- 禁用右鍵: -->  <script>  function stop(){  return false;  }  document.oncontextmenu=stop;  </script>       
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved