作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对confirm()函数有疑问。它似乎忽略了 setTimeout() 函数并立即调用自身。
我希望该函数在调用之前等待 600 秒完成。
function stillThere () {
if(confirm("Your session has expired. Are you still here?")){
//Continue
} else{
window.location.href = "../logout.php";
}
}
setTimeout(stillThere, 600);
最佳答案
setTimeout
的超时参数是以毫秒为单位的数字
function stillThere (){
if(confirm("Your session has expired. Are you still here?")){
//Continue
}else{
window.location.href = "../logout.php";
}
}
// 1 second = 1000 ms
// 600 seconds = 600000 ms
setTimeout(stillThere, 600000);
关于javascript - 如何让JS函数不被自调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41134831/
我是一名优秀的程序员,十分优秀!