右鍵自動(dòng)鏈接頁(yè)面
發(fā)布時(shí)間:2008-12-19 閱讀數(shù): 次 來(lái)源:網(wǎng)樂(lè)原科技
--------------------------------------------------------------------------------
腳本說(shuō)明:
把如下代碼加入區(qū)域中
<script language=JavaScript>
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
function noSourceExplorer()
{
if (event.button == 2 | event.button == 3)
{
alert("現(xiàn)在正在打開(kāi)細(xì)溪驛站首頁(yè)");
location.replace("http://www.jojoo.net");
}
}
</script>