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.
我需要为每个特定的间隔时间调用一个 struts-action,结果需要反映在前端 (*.jsp)
使用 Javascript(jQuery):
$(function(){ setInterval(function(){ $(selector).load(yourAction); }, pauseTime); });
说明: selector表示应该刷新的内容 yourAction表示您正在调用的操作 pauseTime表示您的页面的生命周期。
selector
yourAction
pauseTime