禁用右键并自动导航
作者:晋城网站建设 日期:2010-02-15
本页面已经加入演示:
脚本说明:
把如下代码加入<body>区域中
<script language="JavaScript">
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
function noSourceExplorer()
{
if (event.button == 2 | event.button == 3)
{
alert("禁止右键...去yahoo!");
location.replace("http://cn.yahoo.com");
}
}
</script>