Query - AJAX load() 方法(二十七)

來源:互聯網
上載者:User
jQuery load() 方法

jQuery load() 方法是簡單但強大的 AJAX 方法。

load() 方法從伺服器載入資料,並把返回的資料放入被選元素中。 文法:

$(selector).load(URL,data,callback);

必需的 URL 參數規定您希望載入的 URL。

可選的 data 參數規定與請求一同發送的查詢字串鍵/值對集合。

可選的 callback 參數是 load() 方法完成後所執行的函數名稱。

這是樣本檔案("demo_test.txt")的內容:

<h2>jQuery and AJAX is FUN!!!</h2><p id="p1">This is some text in a paragraph.</p>

下面的例子會把檔案 "demo_test.txt" 的內容載入到指定的 <div> 元素中: 樣本

$("#div1").load("demo_test.txt");

親自試一試

也可以把 jQuery 選取器添加到 URL 參數。

下面的例子把 "demo_test.txt" 檔案中 id="p1" 的元素的內容,載入到指定的 <div> 元素中: 執行個體

$("#div1").load("demo_test.txt #p1");

親自試一試

可選的 callback 參數規定當 load() 方法完成後所要允許的回呼函數。回呼函數可以設定不同的參數: responseTxt - 包含調用成功時的結果內容 statusTXT - 包含調用的狀態 xhr - 包含 XMLHttpRequest 對象

下面的例子會在 load() 方法完成後顯示一個提示框。如果 load() 方法已成功,則顯示“外部內容載入成功。”,而如果失敗,則顯示錯誤訊息: 執行個體

$("button").click(function(){  $("#div1").load("demo_test.txt",function(responseTxt,statusTxt,xhr){    if(statusTxt=="success")      alert("外部內容載入成功。");    if(statusTxt=="error")      alert("Error: "+xhr.status+": "+xhr.statusText);  });});

親自試一試 jQuery AJAX 參考手冊

如需完整的 AJAX 方法參考,請訪問我們的 jQuery AJAX 參考手冊

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.