DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery中get和post的簡單實例
jquery中get和post的簡單實例
編輯:JQuery特效代碼     

例子:

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.php, { "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.php", { "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:"測試成功"}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved