我在 chrome 和 firefox 中运行的 jQueryMobile 页面中具有以下功能。同样的函数在 iOS 模拟器的 PhoneGap + jQueryMobile 应用程序中运行没有错误,但由于某种原因,当它在浏览器中运行时,错误函数被调用。
textStatus
退货null
和errorThrown
退货"error"
$.ajax({type : "GET",
url : "https://itunes.apple.com/lookup?id=356541460&entity=album",
data : {get_param : "results"},
dataType : "json",
error : function(jqXHR, textStatus, errorThrown) {alert(errorThrown); alert(textStatus);},
success : function(data) {
$.each(data, function(index, element) {
$.each(this, function(index, element) {
if (element.wrapperType === "collection") {
$("#albums-list").append("<li><a id='albums-a-" + element.collectionId + "' href='#album-details'><img src='" + element.artworkUrl100 + "' />" + element.collectionName + "</a></li>");
$("#albums-a-" + element.collectionId).bind('click', function(index) {
Albums.AlbumID = element.collectionId;
});
}
});
});
$("#albums-list").listview("refresh");
}
});
这可能是一个错误吗?这不是为在浏览器中运行而设计的吗?
是否有另一个我可以使用的函数不会产生这个结果?