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.
我有一个复杂的需求。让我说得很简单。
有一个 JSP 页面,其中有一个按钮 NEXT。如果用户在 5 分钟内单击下一步,那么他将被带到 NEXT 页面,但假设用户什么都不做并且闲置,然后在 5 分钟后自动将消息打印在屏幕上“暂停”。
我将如何做到这一点。我将如何跟踪时间。请求您帮助我提供代码。
您可以使用 JavaScript 的window.setTimeout函数在经过一定时间后执行函数:
window.setTimeout
window.setTimeout(showMessage, 5*60*1000);