我想检查本地是否存在.htm文件。我这样做:
jQuery.ajax({
url: 'blahblah',
success: function (data, textStatus, xhr) {
console.log('xhr.status is ');
console.log(xhr.status);
},
error: function () {
console.log('in the error');
},
async: false
});
这在chrome中运行良好。但是在Android上的Phonegap应用程序中,这总是取得成功,无论文件是否存在且状态始终为200.任何想法?