禁用右鍵并自動(dòng)導(dǎo)航
作者:晉城網(wǎng)站建設(shè) 日期:2010-02-15
本頁面已經(jīng)加入演示:
腳本說明:
把如下代碼加入<body>區(qū)域中
<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>