gpt4 book ai didi

javascript - 使用javascript连接html对象数组

转载 作者:数据小太阳 更新时间:2023-10-29 04:10:36 26 4
gpt4 key购买 nike

我正在尝试合并两个由 html 对象组成的数组。出于某种原因,使用 .concat() 对我不起作用。

这里有一个简单的笔来演示这个问题:http://codepen.io/anon/pen/kIeyB

注意:我尝试搜索一些类似的东西,但没有找到任何可以回答我问题的东西。

我认为您可以使用 for 循环以最时尚的方式做到这一点,但我不想重新发明轮子。

var x = document.getElementById("hello");
var items = x.getElementsByClassName("one");
//alert(items.length);
var items2 = x.getElementsByClassName("two");
//alert(items2.length);
items = items.concat(items2);
//alert(items.length);

最佳答案

itemsitems2nodeListHTMLCollection 对象,不是数组。它们不包含 .concat() 方法。它们具有 .length 属性并支持 [x] 索引,但它们没有其他数组方法。

将它们复制到实际数组中的常见解决方法如下:

// convert both to arrays so they have the full complement of Array methods
var array1 = Array.prototype.slice.call(x.getElementsByClassName("one"), 0);
var array2 = Array.prototype.slice.call(x.getElementsByClassName("two"), 0);

关于javascript - 使用javascript连接html对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24133231/

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