$$('aaron')是ajQuery.prototype.init的实例化对象,
如果init的prototype没有关联ajQuery.prototype,他也就没有name属性,
当ajQuery.prototype.init.prototype = ajQuery.prototype后,
$$('aaron')就具有了ajQuery.prototype所有的属性和方法,即实例方法共用了静态方法
如果init的prototype没有关联ajQuery.prototype,他也就没有name属性,
当ajQuery.prototype.init.prototype = ajQuery.prototype后,
$$('aaron')就具有了ajQuery.prototype所有的属性和方法,即实例方法共用了静态方法
2015-03-02
类数组对象就是类似一个数组的对象,对象默认是没有length属性的,所以
1,必须构造一个length属性。
2,必须有下标0,1,2...n(必须连续递增,不能是0,3,4)
3,且length <= (n+1)
起始下标就是对象的属性,这个属性在对象里通过this[i]使用
jQuery()的结果就存储在this[i]里,get(i)相当于调用了this[i]
1,必须构造一个length属性。
2,必须有下标0,1,2...n(必须连续递增,不能是0,3,4)
3,且length <= (n+1)
起始下标就是对象的属性,这个属性在对象里通过this[i]使用
jQuery()的结果就存储在this[i]里,get(i)相当于调用了this[i]
2015-02-17