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.
表示するデータを更新するために、5 秒ごとに更新 (呼び出し) する必要がある jsp ページに次のスクリプトがあります。
$(document).ready(function () { var sampleData = <%=sms.getTimeline()%>; ... });
誰かが私にその方法を教えてもらえますか?
ありがとう、
setInterval を使用して、特定の間隔ごとに JavaScript コードまたは関数を実行できます。
ヘルプ