问答详情
源自:2-3 静态与实例方法共享设计

是不是必须有 fn

是不是必须有 fn

ajQuery.prototype = {
        name: 'aaron',
        init: function(selector) {
               this.selector = selector;
               return this;
        },
        constructor: ajQuery
}
ajQuery.prototype.init.prototype = ajQuery.prototype;

这样行不行呢

问题就是 fn是必须存在的吗, 存在的好处是什么?

提问者:hnull 2014-12-24 19:10

个回答

  • 知北游
    2015-01-20 23:10:06
    已采纳

    我理解是为了,后面的调用时简写的

  • 艾伦Aaron
    2014-12-30 10:19:51

    这个代码发错了吧