jQuery使用ajax的post與get發送資料

來源:互聯網
上載者:User

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

例子:

test.html

頁面引用<script type="text/javascript" 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>

 

下面是摘自網路的函數:

post方法如下:

    function test(access_url, tipE){ 

        $.post(access_url,{  
            first: "test1", second: "test2" 
            }, function(data){ 
                    if(data.success){ 
                        $('#' + tipE).html('處理成功'); 
                    }else{ 
                        $('#' + tipE).html(data.msg);    
                    } 
            },'json' 
       ) 
    }

 

如果想用get方法,則把post換為get就可以了,挺簡單!

這個函數中data值為服務端返回的值,且為JSON格式,當然了,這裡可以用其他類型,如text,xml等等之類。

服務端傳回值是JSON格式,如:{success:true, msg:"測試成功"}

相關文章

聯繫我們

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