我想更新 jQuery 的 $.ajax 方法,因此它的默认超时时间为 20 秒,超时后我想调用我自己的函数,并且我还想创建网络错误函数。
这可能吗 ?
我想这样做是因为我不想在我的所有 $.ajax 请求中添加超时。
请询问是否有任何
像这样对于每个功能都需要我添加超时。
$.ajax(
{
url: "getDuctions.php",
type: "POST",
data: {dept_cd: dept, filter: "payroll_struct_empl_map", primary: "empl_cd"},
beforeSend: function() {
$("#duct").html("<option value=''>Loading</option>");
},
success: function(data) {
$("#duct").html(data);
},timeout:20000,
}
);