介绍
类数组:是一种类似数组的对象,并提供了一种用于访问原始二进制数据的机制,但不是真正的数组。
js 中类数组对象有很多,例如arguments
、 NodeList
、 HTMLCollection
、 jQuery
等
对象特性
1. 拥有 length
属性
var a = document.getElementsByTagName("div");
a.__proto__; // HTMLCollection {} 属于类数组对象
a.length; // 44
2. 可以使用数字下标方式访问对象
a[0]; // <div id="app">...</div>
3. 不能使用数组原型方法,如slice、pop等
a.slice; // undefined
4. 使用 instanceof
操作不属于 Array
a instanceof Array; // false
a instanceof Object; // true
5. 可以被转换为真数组
Array.prototype.slice.call()
var arr = Array.prototype.slice.call(a)
arr instanceof Array; // true
Array.from()
var arr = Array.from(a)
arr instanceof Array; // true
6. 可自定义其他属性
a.name = 'div集合';
创建一个类数组
// 1. 创建空对象
var array_like = {};
// 2. 添加下标属性
array_like[0] = 'a';
array_like[1] = 'b';
// 3. 添加length属性 和 push 属性
array_like.length = 2;
array_like.push = Array.prototype.push;
// 4. 调用下
array_like.push('c')
// 5. 检测
console.log(array_like[2]) // c
console.log(array_like.length) // 3
console.log(array_like instanceof Array) // false
// 6. 转换为真数组
var arr = Array.prototype.slice.call(array_like);
arr instanceof Array; // true
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。