此匿名函数由鼠标移动触发。
var timeout;
// onkeypress
document.onmousemove = function(){
clearTimeout(timeout);
timeout = setTimeout(function(){alert("move your mouse");}, 1000);
}
我也可以让它在按键时被解雇吗?或者是将函数有效地定义为命名函数并像这样调用它的唯一方法:
document.onmousemove.namedfunction();
document.onkeypress.namedfunction();