码迷,mamicode.com
首页 > Web开发 > 详细

读jQuery源码释疑笔记

时间:2016-05-27 20:23:19      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

1、在jQuery.fn=jQuery.prototype中定义了方法:init, map, each , toArray, get, pushStack,   ready,  slice,first, last, eq, map,end;  属性:jquery, constructor, selector, length, push, sort, splice(后三者仅供内部使用)。

 

2、通过jQuery.fn.init.prototype = jQuery.fn;避免了this的混乱。这样看上去jQuery.fn.init重写了其原型对象jQuery.fn中的init方法,再通过new jQuery.fn.init( selector, context, rootjQuery );来生成jQuery实例。从而jQuery也继承了其jQuery.fn中的所有方法和属性。

读jQuery源码释疑笔记

标签:

原文地址:http://www.cnblogs.com/huansky/p/5535816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!