在 JQuery UI 中,调用 super/base 函数的正确语法是什么?在下面的示例中,我应该使用this._super(param1)
or调用基本函数this._super('myFunction', param1)
吗?
$.widget( "namespace.Foo", {
_create: function () {
// ...
this._super( "_create" );
},
myFunction: function(param1) {
// ...
}
});
$.widget( "namespace.Bar", $.namespace.Foo, {
_create: function () {
// ...
this._super( "_create" );
},
myFunction: function(param1) {
// Is this correct?
this._super('myFunction', param1);
// or this?
this._super(param1);
// ...
}
});