JavaScript在10秒后运行



我是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); 
    }
};

相关内容

  • 没有找到相关文章

最新更新