AJAX請求 $.get方法的使用

來源:互聯網
上載者:User

使用jQuery的$.get方法可以以GET方式發起AJAX請求。$.get方法是jQuery的工具 + 生產力函數。

get方法文法

$.get(url,parameters,callback)

參數

 

url

(字串)伺服器端資源地址。

parameter

(對象)需要傳遞到伺服器端的參數。其形式為“鍵/值”。它會查詢的字串追加到url。

callback

(函數)在請求完成時被調用。該函數參數依次為響應體和狀態。

傳回值

XHR執行個體

看個簡單的例子

用戶端代碼:

<html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script><script type="text/javascript">$().ready(function () {  $('#selectNum').change(function () {    var num = $(this).val();    $.get('Server.aspx', { id: num }, function (text,status) { alert(text); });  })})</script></head><body><select id="selectNum">  <option value="0">--select--</option>  <option value="1">1</option>  <option value="2">2</option>  <option value="3">3</option></select></body></html>

服務端主要代碼:

protected void Page_Load(object sender, EventArgs e){  if (!Page.IsPostBack)  {    if (Request["id"] != null && !string.IsNullOrEmpty(Request["id"].ToString()))    {      Response.Write(GetData(Request["id"].ToString()));    }  }}protected string GetData(string id){  string str = string.Empty;  switch (id)  {    case "1":      str += "This is Number 1";      break;    case "2":      str += "This is Number 2";      break;    case "3":      str += "This is Number 3";      break;    default:      str += "Warning Other Number!";      break;  }  return str;}

運行程式,結果

用httpwatcher攔截請求資訊,當下拉框中選擇數字時,可以截取到如下請求資訊。

使用$.get方法時的:

我們可以看到,參數id被追加到了url地址後面。

$.get方法發起的是GET請求,這種請求大多用於查詢某些資訊。

Demo下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.