如何使用 setTimeout 触发 jQuery 事件?
jQuery setTimeout() 方法用于设置时间间隔以触发事件。
示例
这里,我们将使用 jQuery 事件为一个警报框设置 3 秒的时间间隔以加载
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#button1").click(function(){ setTimeout("alert('Hello World!');", 3000); }); }); </script> </head> <body> <button id="button1">Click</button> <p>Click the above button and wait for 3 seconds. An alert box will generate after 3 seconds.</p> <p></p> </body> </html>
广告