将 NodeList 转换为数组
将 NodeList
转换为数组。
- 使用扩展运算符 (
...
) 在新数组中将NodeList
转换为数组。
const nodeListToArray = nodeList => [...nodeList];
nodeListToArray(document.childNodes); // [ <!DOCTYPE html>, html ]
将 NodeList
转换为数组。
...
) 在新数组中将 NodeList
转换为数组。const nodeListToArray = nodeList => [...nodeList];
nodeListToArray(document.childNodes); // [ <!DOCTYPE html>, html ]