jQuery ajaxSuccess() 方法

实例

当 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).ajaxSuccess(function(){
  8. alert("AJAX 请求已成功完成");
  9. });
  10. $("button").click(function(){
  11. $("div").load("/example/ajax/demo.txt");
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div><h2>让 AJAX 更改此文本</h2></div>
  18. <button>修改内容</button>
  19. </body>
  20. </html>

定义与用法

ajaxSuccess() 方法指定在成功完成 AJAX 请求时要运行的函数。

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


语法

  1. $(document).ajaxSuccess(function(event,xhr,options))
参数描述
function(event,xhr,options) 必填。 指定请求成功时要运行的函数
附加参数:
  • event - 包含事件对象
  • xhr - 包含 XMLHttpRequest 对象
  • options - 包含 AJAX 请求中使用的选项

更多实例

使用 options 参数将函数限制为特定文件的 AJAX 请求

分类导航