我正在使用 HTML5、jQuery 1.6.1、jQuery Mobile 1.0.1。
我正在使用下面的代码来发出 Ajax 请求。它在 Chrome 中运行良好,但在 Firefox 14.0.1 中测试时出现以下错误。
窗口上下文中的同步模式不再支持使用 XMLHttpRequest 的 withCredentials 属性。
代码:
$.ajax({
type: "GET",
dataType: "json",
async: false,
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', make_base_auth(UserId, Password));
},
xhrFields: {
withCredentials: true
},
success:function(data){
console.log("Success");
},
error:function(xhr,err){
console.log("Failed" );
}
});
请帮我解决这个问题。