jquery ajax執行個體教程與詳細說明(1/2)

來源:互聯網
上載者:User

說明

$.ajax({ type: "post", url: "handler1.ashx", data: { username: "admin", password: "123" },
success: successhandle });
function successhandle(rep) {
$("#msg").html(rep);
}

詳細講一下關於jquery ajax執行個體

執行個體
通過 ajax 載入一段文本:

jquery 代碼:

$(document).ready(function(){
  $("#b01").click(function(){
  htmlobj=$.ajax({url:"/jquery/test1.txt",async:false});
  $("#mydiv").html(htmlobj.responsetext);
  });
});


html 代碼:

<div id="mydiv"><h2>let ajax change this text</h2></div>
<button id="b01" type="button">change content</button>


jquery學習中使用jquery和prototype整合使jquery的tab實現局部資料,使用prototype的ajax中方法,現在使用jquery實現同樣的功能,如下:

 

jquery真是個非常強大的類庫,今天學習了一下,愛上了,講下jquery中ajax使用方法.

例子:

test.html

頁面引用<script type="text/網頁特效" src="jquery-1.3.2.min.js"></script>

內容有:

<div id="divmsg">hello world!</div>

用法1:(頁面載入時讀取遠程頁面內容到divmsg)

$("#divmsg").load(http://localhost:8012/t.asp教程, { "resulttype": "html" });

傳回型別resulttype有如下幾種:

"xml", "html", "script", "json", "jsonp", "text"

用法2:(點擊post資料返回資料)

<input type="button" id="bnajax" value="ajax" onclick="ajaxtest()" />

<script type="text/javascript" >

 function ajaxtest()
 {
  $.post("http://localhost:8012/t.asp", { "txt": "123" },function(data)
  {
   $("#divmsg").html(data);
  }
  );
 }

</script>

 

首頁 1 2 末頁
相關文章

聯繫我們

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