jQuery ajax $.get或$.post 實現timeout超時設定的方法
var timeout=setTimeout(function(){
//超時啦,乾點什麼
},
5000 //超時時間,考慮到網路問題,5秒還是比較合理的
);
$.post(url,function(data){
if(timeout){ //清除定時器
clearTimeout(timeout);
timeout=null;
}
//該幹嘛幹嘛
});
原文地址:http://www.jgpy.cn/blog/front-end/how_to_set_timeout_to_get_or_post_method_of_jquery_ajax.htm