我想在不创建对象或未在document.ready事件上调用构造函数的情况下调用类方法。我尝试使用其他选项,但没有任何效果。
var objReportsInterface;
class ReportsInterface extends ReportBase {
constructor() {
super();
objReportsInterface = this;
}
subCategories() {}
}
$(document).ready(function() {
$("dropdown").on('change', function()
objReportsInterface.subCategories();
})
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="dropdown"></select>
我正在寻找一个静态方法,但是找到了与我的代码相关的任何示例。我可以使用静态方法吗?
答案 0 :(得分:1)
要创建静态方法(也就是说,附加到构造函数本身而不是实例的方法),请使用static
:
class ReportsInterface {
// ...
static subCategories() {
// ...
}
}
然后
$("dropdown").on('change', function()
ReportsInterface.subCategories();
});