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/
本当にあなたの助けに感謝します。