在WebView裡面載入一個.html,
而這個html裡面有一個button onclick呼叫以下函數,
目前可以成功把資料POST至.aspx,
但是一直無法進入到「success」,
在.aspx也確認沒有錯誤…
收到的alert順序↓
beforeSend
throwError:
complete
請問還有那裡要確認的嗎?謝謝
function SendCode() {
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
$.ajax({
type: "GET",
url: "http://192.168.1.2/testWebSite/tAJAX.aspx",
data:
{
getCoe: "Y"
},
crossDomain: true,
contentType: "application/json; charset=utf-8",
dataType: "json",
beforeSend: function(jqXHR, settings){
alert("beforeSend");
},
success: function (result) {
alert("OK");
},
error: function (xhr, ajaxOptions, thrownError) {
alert(" throwError: " + thrownError);
},
complete: function(jqXHR, textStatus){
alert("complete");
}
});
}