我还是 JQuery 的新手,在让我的 ajax 示例工作的过程中,我遇到了 setTimeout 的问题。我已将其分解为应该添加“。”的位置。每秒到 div。
相关代码在两个文件中。
索引.html
<html><head>
<script type='text/javascript' src='jquery.js'></script>
<script type='text/javascript' src='myCode.js'></script>
</head>
<body>
<div id='board'>Text</div>
</body>
</html>
和myCode.js
(function(){
$(document).ready(function() {update();});
function update() {
$("#board").append(".");
setTimeout('update()', 1000); }
})();
myCode.js 文件工作正常,“update()”第一次运行但再也不会运行。