How to set jquery to stop for a few seconds
Most people don't understand the knowledge points of this article "how to set jquery to stop for a few seconds", so Xiaobian summarizes the following contents for everyone. The contents are detailed, the steps are clear, and they have certain reference value. I hope everyone can gain something after reading this article. Let's take a look at this article "how to set jquery to stop for a few seconds".
In jquery, you can use the setTimeout() method to set a few seconds to stop before execution. This method is used to set a specified waiting time. When the time is up, a specified code will be executed. The syntax is "setTimeout(code to execute, milliseconds to stop)".
Operating environment for this tutorial: Windows 10 system, jquery version 3.2.1, Dell G3 computer.
How does jquery stop for a few seconds?
setTimeout() is a method belonging to window that calls a function or evaluates an expression after a specified number of milliseconds
The syntax format can be either:
setTimeout(code to execute, milliseconds to wait)setTimeout(JavaScript function, milliseconds to wait)
setTimeout() is to set a specified waiting time (in thousandths of a second, millisecond), when the time is up, the browser will execute a specified code
Examples are as follows:
$(document).ready(function(){setTimeout(function(){$("p").css("background-color","#66ccff");}, 3000 )}); This is the title This is a paragraph.
This is a paragraph.
This is a paragraph.
Output:
The above is the content of this article about "how to set jquery to stop for a few seconds". I believe everyone has a certain understanding. I hope the content shared by Xiaobian will help everyone. If you want to know more relevant knowledge content, please pay attention to the industry information channel.