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 页面中有以下脚本,我需要每 5 秒刷新(调用)一次以刷新要显示的数据:
$(document).ready(function () { var sampleData = <%=sms.getTimeline()%>; ... });
有人可以让我知道该怎么做吗?
谢谢,
您可以使用 setInterval 在每个特定时间间隔后运行您的 javascript 代码或函数
帮助