当前位置: 代码迷 >> Web前端 >> 禁止网页下右键和另存为
  详细解决方案

禁止网页下右键和另存为

热度:133   发布时间:2012-10-06 17:34:01.0
禁止网页上右键和另存为
<html>
 <head>
 </head>
<body  oncontextmenu="return false" onselectstart="return false">
<noscript>
<iframe scr="*.htm"></iframe>
</noscript>
</body>
</html>

  相关解决方案