我正在開發Windows Phone上的應用程序。我開發了一個「Windows Phone HTML 5應用程序」。Ajax錯誤與Windows Phone HTML5應用程序
我在jQuery(1.9.1)中使用ajax時遇到了問題。
我的代碼是:
$(document).ready(function() {
$.ajax({
url: "http://google.fr"
}).done(function() {
alert('good');
})
.fail(function() {
alert("error");
});
});
我有一個警告 「錯誤」!
如果我嘗試使用本地文件(/html/test.html而不是http://google.fr),我有同樣的錯誤。
如果我添加
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
jQuery.support.cors = true;
我沒有什麼^^
我怎麼能與Windows電話用HTML 5應用程序做阿賈克斯?
謝謝;)
什麼是錯誤?失敗函數傳遞的參數應該指出失敗的原因。 –
嘗試使用此失敗回調提醒更多信息:'function(xhr,status,error){alert('error:'+ error +',status:'+ status)}'。 –