码迷,mamicode.com
首页 > 编程语言 > 详细

类数组对象

时间:2016-11-24 08:43:35      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:call   type   rip   targe   undefined   class   target   log   https   

 

学习文章: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   

 

类数组对象

标签:call   type   rip   targe   undefined   class   target   log   https   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!