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

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

WBOY
WBOYOriginal
2016-06-06 20:07:071038Durchsuche

想把通过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>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn