鼠标点击和键盘点击自动跳转页面

来源:互联网 发布:vb.net web开发 编辑:程序博客网 时间:2024/05/16 19:32
$(function() {var i = 0;document.onmousedown = function(event) {if (i == 1) {window.open('http://www.njxblog.com');}//setTimeout(function (){window.open('http://www.njxblog.com')},2000);  //定时不太好使,会被浏览器当成广告的i++;};var j = 0;document.onkeydown = function(event) {if (j == 1) {window.open('http://www.njxblog.com');}//setTimeout(function (){window.open('http://www.njxblog.com')},2000);   //定时不太好使,会被浏览器当成广告的j++;};});

(转自:小池编程的博客)

14 0