我有jquery.ajax总是向服务器请求数据。我的问题是,当我 点击一些导航菜单我无法导航它是非常慢。我试图在成功内部评论方法,它工作正常我可以非常快速导航,因为没有请求运行...任何想法如何使这项工作有请求同时运行,我可以导航到其他页面。
更多的输入非常感谢。
提前谢谢。
$(function(){
getUpdates();
});
function getUpdates(){
type: "GET",
dataType:'json',
url: "updates.php",
error: function () {
setTimeout(getUpdates, 5000);
},
success: function(data){
//do something with the data
...
...
...
getUpdates(); //call again the function
}
});
}