我正在尝试让我的生活让这个插件工作,但我不理解状态功能,所以重试不会解雇。
$.poll(10000, function(retry){
$.get('willfail', function(response, status){
if (status == 'success') {
// Do something
alert("YES");
} else {
alert("NO");
//retry();
}
})
})
如果我将get请求设置为'/',它将向我发出警告YES消息,但实际上,尽管有ELSE,警报No消息永远不会被触发。
我正在使用jquery轮询插件:
https://github.com/jeremyw/jquery-smart-poll
有什么想法吗?
答案 0 :(得分:2)
您还可以使用Smartupdater - jQuery插件
http://www.eslinstructor.net/smartupdater/
让你:
答案 1 :(得分:1)