gpt4 book ai didi

jquery类继承

转载 作者:行者123 更新时间:2023-12-03 21:40:17 27 4
gpt4 key购买 nike

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())?

最佳答案

对于 OO,最好看看 jQuery 之外的东西。 jQuery 基于选择器返回的集合。

如果您想要上课,一些选择是 Base2 , Joose ,和JS.Class .

关于jquery类继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1075660/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com