Home > Article > Web Front-end > How to make jQuery delay execution
This time I will bring you how to delay the execution of jQuery and what are the precautions to delay the execution of jQuery. The following is a practical case, let's take a look.
When making a control, you can use this delay method to encounter some events that cannot be processed synchronously.
<html> <script src="js/jquery.js"></script> <script> $(function(){ $('#test').bind("click",function(){ setTimeout(function(){alert($('#test').val());},800); }); $('#test').bind("blur",function(){ $('#test').val("已经赋值啦!"); }); }) </script> <input type="text" id="test" size="12" value=""> </html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to quickly operate JQuery elements
Use JQuery to operate Ajax (with case)
The above is the detailed content of How to make jQuery delay execution. For more information, please follow other related articles on the PHP Chinese website!