我正在尝试通过AJAX调用处理表单提交,我的代码如下:
$.ajax({
type: "POST",
data: $("#form1").serialize(),
url: "https://somedomain.com/signup.aspx",
dataType: "text/html",
success: function(output, status, xhr) {
alert('Success!');
},
error: function (request, textStatus, errorThrown) {
alert(request.getResponseHeader('location'));
}
});
在Chrome中使用开发者工具我可以在“位置”标题中看到我期待的响应。我正在尝试访问这些数据,但是它总是空的!#/ p>
有趣的是,ajax调用的成功部分永远不会发生,总是错误,但我需要的数据是在标题中,所以我可以应用自己的逻辑来做我需要的。
有什么建议吗?
谢谢!