调用基类方法似乎对我不起作用。我有以下设置:
...
<div class='my'></div>
...
和 Javascript
$.widget('tt.name1',{
_create: function() {
this.name = 'name'
console.log('-->', this.name);
}
});
$.widget('tt.name2',$.tt.name1, {
_create: function() {
this._super();
/*$.tt.name1.prototype._create.call(this);*/
this.name = 'name2'
console.log('-->', this.name);
}
});
$('.my').name1();
$('.my').name2();
调用时会产生以下输出和错误this._super()
--> name
Uncaught TypeError: Object # has no method '_super'