VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 网站开发 > JavaScript >
  • JavaScript教程之类数组(伪数组)

类数组(伪数组): Array-like和数组很像,有length属性,但是没有数组的方法。

常见的类数组有:

  1: 函数内置的arguments对象;

  2:通过document.getElementsByTagName()获取的元素,为一个HTMLCollection()集合;

  3:通过document.getElementByName()获取的元素,为一个NodeList[]集合;

类数组转为数组: 当我们要使用数组的一些方法的时候,就要先将类数组转为数组

  1:

    Array.prototype.slice.call();

  2:

    Array.from();这个方法是es6中的方法;

打印结果为:

   

 


相关教程