如何在 TypeScript 中使用自定义事件?
在 jQuery 中,我这样做:
$("#btnShowExplorer").click(function () {
$.event.trigger("showexplorerpf");
});
在其他地方我“听”那个事件
// bind to the special custom event
$('#idExplorerWindow').bind("showexplorerpf", function () {
// do stuff...
});
我现在将我的代码移动到 TypeScript - 我有一个 jQuery 类型def 文件的引用,但 $.event.trigger 无法识别..
谢谢