1
我想遍歷這個節點,我從AJAX調用中獲得回來,並且遇到問題。我試圖訪問位於facet/#/@attributes/name
的name
節點。我目前處於#
的等級,但對如何進入@ attributes
的等級感到困惑。遍歷jQuery中的這個節點
console.log(data.categories); //outputs what you see below.
$(data.categories.facet).each(function(key, value) {
console.log(key + ' : ' + value.attributes); //outputs undefined
});
'的console.log(鍵+ ':' +值[ '@屬性']名稱);' – Musa
@Musa我不斷收到錯誤'未捕獲的SyntaxError:意外的令牌)' – Jon
對不起錯字'控制檯.log(key +':'+ value ['@ attributes']。name);' – Musa