$.ajax({
url: urls.delpb,
type: "POST",
data:{
ids:ids
},
success: function(data){
if ( data!=0){
window.location.href = urls.dutyInfomation
+ "?currentlyPage=" + inputCount + params; }else {
alert("出错了");
}
},
error :function(){
alert("出错了");
},
timeout:60000//毫秒
});
原文:http://my.oschina.net/u/587105/blog/385746