我使用jquery
每15秒发出一次ajax请求,用信息更新<DIV>
元素。这通常很好,但几分钟后,当ajax请求运行几次时,我遇到了浏览器性能问题。我只需要在firefox中运行该页面,但最重要的是问题。
这是我每隔15秒调用一次该函数的方式:
setInterval(syncdiv, 15000);
这是我的ajax请求:
function syncdiv() {
$.ajax({
url: 'code_get_msg_sync.php?',
cache: false, // The problem exist with cache true even with false
success: function(data) {
$('#msgdiv').html(data);
}
});
}