Lawguancong / Daily-Charging-Learning

0 stars 0 forks source link

类数组 #12

Open Lawguancong opened 3 years ago

Lawguancong commented 3 years ago

• 拥有length属性,其它属性(索引)为非负整数(对象中的索引会被当做字符串来处理); • 不具有数组所具有的方法;

常见的类数组有:

• 函数的参数 arguments, • DOM 对象列表(比如通过 document.querySelectorAll 得到的列表) nodelist • jQuery 对象 (比如 $("div")). • input的文件对象FileList

类数组转换为数组的几种方法

• Array的slice方法,例如:Array.prototype.slice.call(arguments); • Array.from(),例如:let arr = Array.from(arguments); • 扩展运算符...,例如:let arr = [...arguments];

dom的类数组如何转成数组

https://blog.csdn.net/qweasd222asd/article/details/108343297

参考链接 https://juejin.cn/post/6844903477202649101 https://www.zhihu.com/question/56945566