右鍵自動鏈接頁面
作者:晉城網站建設 日期: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("現在正在打開E波網絡首頁");
location.replace("http://m.jinjiusolutions.com.cn");
}
}
</script>