var A=function(){ }; $.extend(A.prototype,{ init:function(){ alert('A init'); } }); var B=function(){ }; $.extend(B.prototype,A.prototype,{ init:function(){ alert('B init'); } }); var p=new A(); p.init(); var x=new B(); x.init();
以上是在jQuery中创建类和继承的最好方法吗?在B的init中,如何调用父类的init(类似于OO语言的super.init())?