在 JavaScript 中迭代 JSON 結構
使用 JSON 資料時,通常需要迭代其結構來擷取或操作資料。在提供的JSON 結構中:
[ { "id": "10", "class": "child-of-9" }, { "id": "11", "class": "child-of-10" } ]
我們可以使用簡單的JavaScript for 迴圈來迭代數組中的每個物件:
for (var i = 0; i < arr.length; i++) { // First, access the current object var obj = arr[i]; // Now, we can iterate over the object's properties for (var key in obj) { // Obtain the value for the current property var value = obj[key]; // Output the key and value document.write(`<br><br> - ${key}: ${value}`); } }
此程式碼將逐步遍歷數組中的每個物件數組,存取其id 和class 屬性。輸出將顯示在瀏覽器中,列出每個屬性及其值。
以上是如何在 JavaScript 中迭代 JSON 物件數組?的詳細內容。更多資訊請關注PHP中文網其他相關文章!