首页 > 编程语言 > 详细

类数组对象

时间:2016-11-24 08:41:25      阅读:206      评论:0      收藏:0      [点我收藏+]

 

学习文章:javascript类数组

 

总结笔记

特点:拥有length属性,不具有数组的方法。

例子:arguments、document.getElementsByTagName

 

类数组对象使用数组对象的方法

var a ={"1":"xu", "2": "hao","3":"dong" ,length:4};
Array.prototype.join.call(a, "-");   //"-xu-hao-dong"

注意:

①如果属性(索引)为字符串,则属性值不会被数组方法引用。

②如果length为3,则结果为“-xu-hao”

 

 

类数组对象转化为数组对象

var a ={"x":"xu","h":"hao","d":"dong","1":1,"2":2,length:5};
var arr = Array.prototype.slice.call(a);
console.log(arr);  //arr = [1,2]  
console.log(arr[1]);  //1   
console.log(arr[0]);  //undefined   
console.log(arr.length); //5   

 

类数组对象

原文:http://www.cnblogs.com/xuhaodong/p/6096031.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!