禁用右鍵并自動(dòng)導(dǎo)航
發(fā)布時(shí)間:2008-12-19 閱讀數(shù): 次 來源:網(wǎng)樂原科技
腳本說明:
把如下代碼加入區(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://www.yahoo.com");
}
}
</script>