js監聽滑鼠點擊(onmousedown)和鍵盤點擊(onkeydown)事件並自動跳轉頁面,在學習的朋友可以參考下
$(function(){
var i = 0;
document.onmousedown=function(event){
if(i==1){
window.open('http://www.njxblog.com');
}
//setTimeout(function (){window.open('http://www.jb51.net')},2000); //定时不太好使,会被浏览器当成广告的
i++;
};
var j = 0;
document.onkeydown=function(event){
if(j==1){
window.open('http://www.njxblog.com');
}
//setTimeout(function (){window.open('http://www.jb51.net')},2000); //定时不太好使,会被浏览器当成广告的
j++;
};
});