我在 typescript 中的类构造函数中向 ID 添加了一个更改事件,并且在该更改事件中我想访问一个类函数,但是在事件内部时,“this”似乎不是类。如何从那里访问该功能?
export class Document_Uploads {
constructor() {
$("#FormBrokerReferenceID").change(function () {
= $("#FormBrokerReferenceID").val();
//inside this event it does not work
this.Validate()
});
// works here inside constructor
this.Validate()
}
Validate() {
var valid: bool = true;
some other code
}
}