Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Mobile Safari (iOS 6) 中使用 HTML5。我想在一段时间后执行 JavaScript 代码。例如在 60 秒后重定向到另一个页面。
可能吗?
这将在 60 秒后仅执行一次您的代码:
setTimeout(function() { /* your code here */ },60000);
虽然这
setInterval(function() { /* your code here */ },60000);
将每60 秒执行一次您的代码
你试过https://github.com/paulirish/jquery-idletimer/吗?