我创建这样的 jquery 小部件:http: //alexsexton.com/blog/2010/02/using-inheritance-patterns-to-organize-large-jquery-applications/
/*mywidget.js*/
(function ($) {
function MyWidget(options, element) {
$.Widget.call(options, element);
}
MyWidget.prototype = Object.Create($.Widget.prototype);
MyWidget.prototype._create = function () {
/*my code here*/
}
MyWidget.prototype.destroy = function () {
/*my code here*/
$.Widget.prototype.destroy.call(this);
}
$.widget.bridge("mywidget", MyWidget);
}(jQuery));
如何在打字稿中编写此代码?我知道d.ts jquery-ui,但它只提供接口。不能继承接口。