我有一个非常简单的脚本:
$(function() {
$.ajax({
url: "/admin/s_basket_view_basket_ajax.php",
async: true,
cache: false,
success: function (response) {
$('#myDebug').append(response);
},
error: function(xhr, status, error) {
$('#myDebug').append('<p>status code: '+xhr.status+'</p>');
$('#myDebug').append('<p>error: ' + error + '</p>');
$('#myDebug').append('<p>xhr.responseText:</p>');
$('#myDebug').append('<div>'+xhr.responseText + '</div>');
}
});
});
这适用于桌面浏览器,但在iPhone和Linux上返回状态代码:0 Android浏览器。
这不是跨域请求 - 脚本在文件夹中运行(例如www.mydomain.com/scripts /)
我感谢任何建议......