jQuery ajaxSend() 方法

实例

当 AJAX 请求即将发送时,更改 <div> 元素的内容:

  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).ajaxSend(function(e, xhr, opt){
  8. $("div").append("<p>Requesting " + opt.url + "</p>");
  9. });
  10. $("button").click(function(){
  11. $("div").load("/example/ajax/demo_load.ashx");
  12. });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div><h2>让 AJAX 更改此文本</h2></div>
  18. <button>更改内容</button>
  19. </body>
  20. </html>

定义与用法

ajaxSend() 方法指定将要发送 AJAX 请求时要运行的函数。

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


语法

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

分类导航