关于Array.prototype.filter.call的问题

有这样一段代码:

function traverse(){
    return Array.prototype.filter.call(document.querySelectorAll('body *'), function(node){
        return node.offsetWidth > 50 && node.offsetHeight > 50;
    });
}

1.call有两个参数,第一个是指作用域,第二个是参数,这段代码中call不能替换为apply,是否是因为apply要求的第二个参数是数组的原因?
2.document.querySelectorAll('body *')的返回值是nodelist,而nodelist不属于array,filter是数组的方法,为什么可以应用到这里??

阅读 6.5k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题