右键控制 点击右键后把你带到指定网址
发布时间:2008-12-19 阅读数: 次 来源:网乐原科技
要完成此效果把如下代码加入到区域中
<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>