美文网首页
类数组转化为数组

类数组转化为数组

作者: 砚婉儿 | 来源:发表于2020-10-12 09:51 被阅读0次

    类数组是具有length属性,但不具有数组原型上的方法。
    常见的类数组有arguments、DOM操作方法返回的结果。

    方法:

    
    // 方法一:Array.from
    Array.from(document.querySelectorAll('div'))
    
    // 方法二:Array.prototype.slice.call()
    Array.prototype.slice.call(document.querySelectorAll('div'))
    
    // 方法三:扩展运算符
    [...document.querySelectorAll('div')]
    
    

    相关文章

      网友评论

          本文标题:类数组转化为数组

          本文链接:https://www.haomeiwen.com/subject/tmxjpktx.html