如何实现前后更改文本的功能

how to make a function to change the text back and forward

我只想更改按钮文字

<button id="reset">Reset</button>
$("#reset').on("click", function () {
this.textContent  = "Loading....";
setTimeOut("this.textContent = " Reset", 2000)
}

在我点击后,它会将文本更改为正在加载,并在几秒钟后变回重置。 我尝试添加文字

你不需要jQuery。

就是这个:

<button id="reset" onclick="this.textContent = 'Loading...'; setTimeout( e => this.textContent = 'Reset', 2000 );">Reset</button>