我真的很困惑這幾行代碼應該在我看來。 Div在使用.html時更新,但在使用自定義腳本時不會更新。阿賈克斯成功,如何刷新每分鐘響應
我有幾個文件,index.php文件和test.php的
指數包含:
$(document).ready(function() {
setInterval(function() {
$(function() {
$.ajax({
url: 'test.php',
dataType: 'json',
cache: false,
success: function (data) {
// custom script that displays parsed info goes here, doesn't work
$("#div").html(data); // works and updates
}
});
});
}, 10000);
});
的test.php包含JSON字符串。
index.php會顯示並更新div中的解析信息,但是使用json填充的數據的腳本不會刷新。
任何幫助將不勝感激。
謝謝
如果使用firefox你可能會安裝firebug來跟蹤發生了什麼事情。它允許您查看是否發送請求以及每個請求的內容和響應。 – 2010-09-23 23:40:54
所以你的問題中的代碼有效,但是還有另外一部分,你沒有包括那不起作用? – user113716 2010-09-24 00:25:14
謝謝大家的回答。有問題的劇本其實是罪魁禍首。 – Bastien 2010-09-24 03:17:12