基本上我正在搜索没有重定向的href
。我有以下功能
if(custom_options !== undefined){
op = custom_options;
op.url = url;
op.data = data;
op.type = type;
}else{
op = {
type: type,
data: data,
url: url,
cache: false,
async: true
};
}
$.ajax(op);
这会向指定的网址发送一个ajax请求,但是undefined/proxy/...
总是会失败,因为看到here到各个网址,所以我相信问题在于该功能。如何在没有重定向的情况下执行url并处理反馈?