我在加载窗口时使用setInterval()实现了会话超时。如何重置按键事件的会话时间。这是我写的代码。
window.onload = function(){ (function(){ var counter = 60; setInterval(function() { counter--; if (counter >= 0) { //alert(counter) span = document.getElementById("count"); span.innerHTML = counter; } if (counter === 0) { $("#session-expired-modal").modal('show'); } }, 1000); })(); } function sessionExpiredRedirect(){ window.location=url; }
答案 0 :(得分:0)
template variables are not supported.