网页鼠标特效
禁用右键自动导航:如果你点了右键页面就自动跳转到相应链接上,你想试一试吗
效果演示:
把如下代码加入<body>区域中
<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://www.dabaoku.com/sucai/");
}
}
</script>
友情连接
关于我们
-
版权声明
-
广告服务
-
联系我们
-
友情链接
-
论坛登陆
© CopyRight 2002-2003, www.dabaoku.com, Inc. All Rights Reserved