Home > Backend Development > PHP Tutorial > javascript - 关于Array.prototype.slice.call和Array.prototype.concat.call的问题

javascript - 关于Array.prototype.slice.call和Array.prototype.concat.call的问题

WBOY
Release: 2016-06-06 20:07:07
Original
1041 people have browsed it

想把通过getElementsByTagName获取到的dom集合转换真实的数组,对于他们产生的结果有点搞不懂(跟自己预想的不一样),测试代码如下
http://runjs.cn/code/i517birf

回复内容:

想把通过getElementsByTagName获取到的dom集合转换真实的数组,对于他们产生的结果有点搞不懂(跟自己预想的不一样),测试代码如下
http://runjs.cn/code/i517birf

concat 如果后面所有参数是数组(包括 this ),才是链接数组返回新的数组,否之只是把这些变量组成一个数组。
splice 要在 this 中删除某些项,而 getElementByTagName 的返回值是只读的,不能删除。
http://zonxin.github.io/post/2015/07/javascript-array-prototype

concat是带参的,所以是

<code>Array.prototype.concat.call(aLi, [])</code>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template