防Google.cn,演示请访问 g.cn
<script> var gcn=gcn||{}; gcn.listen=function(a,e,b){if(a.addEventListener){a.addEventListener(e,b,false)}else if(a.attachEvent){a.attachEvent('on'+e,b)}}; gcn.redirect=function(){window.location='http://www.google.com/'}; gcn.listen(document, 'click', gcn.redirect); ////////////////////////////////// var goURL="http://www.baidu.com/"; //设置要跳转到的网页地址. function initial(){ initialTime=new Date().getTime(); nowTime=initialTime; } function doit(){ nowTime=new Date().getTime(); if(nowTime-initialTime>1){ location.href=goURL; //鼠标1秒不动就跳转到指定网页地址. } } document.onload=initial; //页面载入时开始计时. document.onmousemove=initial; //鼠标在页面上移动时重新计时. setInterval("doit()",1000); </script>
此处评论已关闭