Home > Article > Web Front-end > How to call setinterval() and clearInterval() JS functions_javascript skills
The example in this article describes how to call the setinterval() and clearInterval() JS functions. Share it with everyone for your reference. The details are as follows:
The setInterval() method can call a function or calculate an expression according to the specified period (in milliseconds).
The setInterval() method will continue to call the function until clearInterval() is called or the window is closed. The ID value returned by setInterval() can be used as an argument to the clearInterval() method.
Grammar
参数 | 描述 |
---|---|
code | 必需。要调用的函数或要执行的代码串。 |
millisec | 必须。周期性执行或调用 code 之间的时间间隔,以毫秒计。 |
I hope this article will be helpful to everyone’s JavaScript programming design.