$(function() {
setInterval(function() {
$.get("refresh.php", function(result) {
$('#response').empty()
.hide()
.html(result)
$("#response").append(result)
.fadeIn("slow");
});
}, 5000);
});
其實我的劇本打refresh.php每5秒在refresh.php我從MySQL數據庫提取數據,並創建一個模板:清除DIV內容
<table>
<tr><td>Name<td><td>$fetch['name']</td></tr>
</table>
我在我的螢火蟲刷新檢查。 PHP5秒後發送響應只有一次,但在所有的瀏覽器就顯示了類似的結果兩次:
<table>
<tr><td>Name<td><td>$fetch['name']</td></tr>
</table>
<table>
<tr><td>Name<td><td>$fetch['name']</td></tr>
</table>
感謝哎呀哥們 – 2012-04-05 21:49:14