我是Javascirpt的新手。我应该究竟应该添加到下面的代码中,以便this.callHandler('ok');
仅在10
秒之后运行
Window_NameInput.prototype.processHandling = function() {
if (this.isOpen() && this.active) {
this.callHandler('ok');
}
};
任何帮助都会感谢您事先感谢
用功能包装this.callHandler('ok')
并将其传递给setTimeout()
。将10000
作为第二个参数传递,因为它花费时间以毫秒为单位。
Window_NameInput.prototype.processHandling = function() {
if (this.isOpen() && this.active) {
setTimeout(() => this.callHandler('ok'),10000);
}
};