首頁  >  文章  >  web前端  >  jquery如何實作ajax技術3:$.get()

jquery如何實作ajax技術3:$.get()

黄舟
黄舟原創
2016-12-21 15:44:051328瀏覽

今天要跟大家介紹的是jQuery中的$.get()。它同樣能夠讓我們以非常少的程式碼量完成網站開發中的ajax需求。
  $.get()函數的參數和我們在《jquery如何實作ajax技術2:$.post()》中介紹的$.post()參數相同。具體如下:
  $.get(url,data,callback,type)
  url---待載入頁面的 URL 位址。
  data---待傳送 Key / value 參數。
  callback---載入成功時回呼函數。
  type---返回內容格式,xml, html, script, json, text, _default。
  下面舉一個實際例子:
  ========================================== =====================
  ajax.html

 

 

 

$.ajax的應用  <script type="text/javascript" language="javascript" src="./js/jquery.js"></script><p></p>  <script type="text/javascript" language="javascript"><p> $(document).ready(function(){<p>    $('#bot_1').click(function(){<p>      $.get('ajax.php',{web:"my100" ,st){$("div").html(data);})<p>    })<p>  })<p>  </script><p></p>  <p>  </p> <p>  </p> 應用<p></p>  <center><div>這是需要顯示的地方</div></center> <p></p>  <center> <button id="bot_1">點我</button>">點我吧"> ></center> <p></p> 
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn