gpt4 book ai didi

Jquery 将元素推送到数组中

转载 作者:行者123 更新时间:2023-12-01 02:13:44 25 4
gpt4 key购买 nike

我不确定我现有的代码是否有错误或者 Jquery Array 中的功能如下:

var categories = [];
$(this).children('categories').each(function() {
categories.push($(this).find('name').text());
});

现在当我有以下 XML 节点时:

<categories>
<name>a</name>
<name>b</name>
<name>c</name>
</categories>

我看到 Firebug 中的类别数组有一个元素 - “abc”,但实际上它应该是索引 2,值为“a”、“b”和“c”

我的代码有问题吗?

最佳答案

$(this).children('categories').each(function() {
$(this).find('name').each(function(){
categories.push($(this).text());
});
});

关于Jquery 将元素推送到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9779839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com