試行錯誤ページ611 JSONデータをページ内で読み込み
$(function() { //データ var data = [ { "animal": "いぬ", "type": "パグ" }, { "animal": "ねこ", "type": "ペルシャ" }, { "animal": "うさぎ", "type": "ネザーランド・ドワーフ" }, { "animal": "ハムスター", "type": "ジャンガリアンハムスター" }, ];
//表示する処理 for(var i in data){ $("#contents_list").append("
"); } });
plustrick.com/script_json_beginner/
うまくいかない