我想每 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()”行不正确。
jeck猫
相关分类