html iframe禁用右鍵


 

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>


 
   <script type="text/javascript">
      document.oncontextmenu = function(){     
          return false;
      } 

 
  </script>



 <body  >
 

 

  <iframe id="ifm" height="100%" width="100%" marginwidth ="0" marginheight="0"   src="http://localhost/abc.html"></iframe>
 
 </body>

  <script type="text/javascript">
      var iframe = document.getElementById('ifm');
iframe.onload=function(){
  iframe.contentWindow.document.oncontextmenu=function(){return false;};
  iframe.contentWindow.document.onselectstart=function(){return false;};
};

  </script>

</html>

 

 

document.oncontextmenu = function(){     
          return false;
}


 var iframe = document.getElementById('ifm');
iframe.onload=function(){
  iframe.contentWindow.document.oncontextmenu=function(){return false;};
  iframe.contentWindow.document.onselectstart=function(){return false;};
};


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM