最新的Web開發教程
 

jQuery ajaxSend() Method

<jQuery的AJAX方法

更改內容<div>當一個元素AJAX請求即將發送:

$(document).ajaxSend(function(e, xhr, opt){
    $("div").append("<p>Requesting: " + opt.url + "</p>");
});
試一試»

定義和用法

所述ajaxSend()方法指定時運行一個函數AJAX請求是要被發送。

注:由於jQuery的1.8版,這個方法只應附於文件。


句法

$(document).ajaxSend(function(event,xhr,options))

參數 描述
function(event,xhr,options) 需要。 指定函數,如果請求成功運行
附加參數:
  • event -包含事件對象
  • xhr - contains the XMLHttpRequest object
  • options - contains the options used in the AJAX request

<jQuery的AJAX方法