我需要在警告框中创建一个60秒的停顿时间。由于我在应用程序中的每个位置都使用此common.js,因此无法使用Html绑定数据。所以我正在寻找如何仅在Javascript警告框中绑定数据。我只需要使用Javascript而不是jquery。
function idleLogout() {
debugger;
var timeLeft = 60;
var t;
document.onkeypress = resetTimer;
document.onmousemove = resetTimer;
function logout() {
debugger;
alert("Due to inactivity, your session will expire in" +timeLeft+ " seconds. Please click ‘OK’ to continue. ");
timeLeft--;
}
function resetTimer() {
clearTimeout(t);
t = setTimeout(logout, 10000);
}
}
idleLogout();