为什么 AJAX(每 x 次重新加载 div)不起作用?

我想每 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()”行不正确。


慕码人8056858
浏览 107回答 1
1回答

jeck猫

您必须使用加载功能:setInterval(function(){&nbsp; &nbsp;$('#show').load('/path/to/server/source');}, 2000) /* time in milliseconds (ie 2 seconds)*/
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5