我想每 x 次重新加载一个 div。这是我到目前为止所拥有的:HTML: <div class="col-sm-6" id="myDesign" id="show"> <h3>Show my cars:</h3> <?php $controller->getEvents(); ?></div><script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>JS:* ...In a document ready function... *setInterval(function () { $('#show').reload() }, 3000); 我认为我的重新加载函数在“$('#show').reload()”行不正确。
1 回答
jeck猫
TA贡献1909条经验 获得超7个赞
您必须使用加载功能:
setInterval(function(){
$('#show').load('/path/to/server/source');
}, 2000) /* time in milliseconds (ie 2 seconds)*/
- 1 回答
- 0 关注
- 106 浏览
添加回答
举报
0/150
提交
取消