Home  >  Article  >  Web Front-end  >  jQuery学习笔记之toArray()_jquery

jQuery学习笔记之toArray()_jquery

WBOY
WBOYOriginal
2016-05-16 16:45:221082browse

从源码中可以看到,这些常见的方法,都是直接从原生的
javascript中"借鉴"过来的.为什么这么说呢?
225行中,在运行时,this是指向jQuery对象的,通过call语句借鉴slice方法,切割出一个数组出来,这种"借鸡下蛋"的方法,真的是让人拍手叫绝.
slice(start,end)是用来切分数组的.
start表示切分数组的开始位置.
省略end表示到从start一直到最后

Statement:
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