我很难显示来自 json 的数据。标题显示正常,但item.volumeInfo.industryIdentifiers.type返回未定义。
$.ajax({
url: 'https://www.googleapis.com/books/v1/volumes?q=:isbn=0-13-727827-6',
dataType: 'json',
success: function (data) {
$.each(data.items, function (index, item) {
$(".tab1").append("<div>" + item.volumeInfo.title + "</div><div>" + item.volumeInfo.industryIdentifiers.type + "</div>");
});
}
});
小提琴在这里:http: //jsfiddle.net/HFs8U/1/
非常感谢您的帮助。