右鍵控制 點擊右鍵后把你帶到指定網(wǎng)址
發(fā)布時間: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("帶你去主頁!");
location.replace("http://typhoon.500.to");
}
}
</script>