jQuery ajaxStop() 方法

实例

指定 AJAX 请求启动时要运行的函数:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $(document).ajaxStop(function(){
  8. alert("所有的 AJAX 请求已完成");
  9. });
  10. $("button").click(function(){
  11. $("div").load("/example/ajax/demo.ashx");
  12. $("div").load("/example/ajax/demo_load.ashx");
  13. });
  14. });
  15. </script>
  16. </head>
  17. <body>
  18. <div><h2>让 AJAX 更改此文本</h2></div>
  19. <button>修改内容</button>
  20. </body>
  21. </html>

定义与用法

ajaxStop() 方法指定在所有 AJAX 请求完成时运行的函数。

当 AJAX 请求完成时,jQuery 会检查是否还有其他 AJAX 请求。如果没有其他挂起的请求,则使用 ajaxStop() 方法指定的函数将运行。

注意:从 jQuery 1.8 版开始,此方法只应附加到文档。


语法

  1. $(document).ajaxStop(function())
参数描述
function()必填。指定在所有 AJAX 请求完成时运行的函数

分类导航