0
我正在嘗試使用JavaScript進行不活動的自動註銷。即使當我移動鼠標並快速按任意鍵時,計時器也不會重置。Mousemove和按鍵不起作用
var timeOut;
function reset() {
window.clearTimeout(timeOut);
timeOut = window.setTimeout("redir()" , 5000);
}
function redir() {
window.location = "index.php?page=Logout";
}
window.onload = function() { setTimeout("redir()" , 5000) };
window.onmousemove = reset;
window.onkeypress = reset;
這個工作,太感謝你了! –