htmlcollection转换成array
时间: 2023-04-25 11:04:20 浏览: 149
将HTMLCollection/NodeList/伪数组转换成数组的实现方法
可以使用Array.from()方法将HTMLCollection转换成数组。例如:
```
const htmlCollection = document.getElementsByTagName('div');
const array = Array.from(htmlCollection);
```
这样就将获取到的div元素集合转换成了数组。
阅读全文