03
Oct

虽然没什么大用处,反正想查看你网页源码还是能看到,不过也算是个功能吧。

1 禁用网页右键
<script language=”JavaScript”>
document.oncontextmenu=new Function

(“event.returnValue=false;”);
document.onselectstart=new Function

(“event.returnValue=false;”);
</script>

2 禁用网页播放器右键
<PARAM NAME=’enableContextMenu’ VALUE=’0′>

3禁用右键并自动导航
<script language=”javascript”>
if (navigator.appName.indexOf(“Internet

Explorer”) != -1)
 document.onmousedown = noSourceExplorer;
function noSourceExplorer()
{
 if (event.button == 2 | event.button == 3)
 {
  alert(“禁止右键…去首页!”);
  location.replace(“http://boluo.org”);
 }
}
</script>


添加评论