1. ホーム
  2. javascript

[解決済み] JSON構造体を反復処理する方法を教えてください。[重複しています]

2022-03-17 16:53:45

質問

以下のようなJSON構造を持っています。

[{ "id":"10", "class": "child-of-9" }, { "id": "11", "classd": "child-of-10" }]

JavaScriptで反復処理するには?

どのように解決するのですか?

引用元 jQueryドキュメント :

var arr = [ "one", "two", "three", "four", "five" ];
var obj = { one:1, two:2, three:3, four:4, five:5 };

jQuery.each(arr, function() {
  $("#" + this).text("My id is " + this + ".");
  return (this != "four"); // will stop running to skip "five"
});

jQuery.each(obj, function(i, val) {
  $("#" + i).append(document.createTextNode(" - " + val));
});