是不是必须有 fn
是不是必须有 fn
ajQuery.prototype = {
        name: 'aaron',
        init: function(selector) {
               this.selector = selector;
               return this;
        },
        constructor: ajQuery
}
ajQuery.prototype.init.prototype = ajQuery.prototype;这样行不行呢
问题就是 fn是必须存在的吗, 存在的好处是什么?

 
                             
                            