<script type="text/javascript">
  //Method one
  //<![CDATA[
  //document.oncontextmenu=new Function('event.returnValue=false;');
  document.oncontextmenu = function (e) { e = e || window.event; e.returnValue = false; }
  document.onselectstart = new Function('event.returnValue=false;');
  //]]>
 </script>
<!--Method two-->
<body oncontextmenu="return false" onselectstart="return false"></body>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
  • 2021-05-27
  • 2021-09-04
  • 2022-12-23
相关资源
相似解决方案