首頁  >  文章  >  web前端  >  jquery中get和post的簡單實例_jquery

jquery中get和post的簡單實例_jquery

WBOY
WBOY原創
2016-05-16 17:01:291046瀏覽

範例:

test.html
頁引用

內容有:

Hello World!

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

$("#divMsg").load(http://localhost:8012/t.php, { "resultType": "html" });

傳回型別resultType有下列幾種:

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

用法2:(點選post資料回傳資料)

複製程式碼 程式碼:




下面是摘自網路的函數:

post方法如下:

複製代碼 代碼如下:

    function test(access_url, tipE){

        $.post(access_url,{ 
            first: "test1", second: "test2"            #' tipE).html('處理成功');
                    }else{
   ).html(data.msg);   
                    }
   🎜>       )
    }


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

這個函數中data值為服務端傳回的值,且為JSON格式,當然了,這裡可以用其他型別,如text,xml等等之類。
服務端回傳值是JSON格式,如:{success:true, msg:"測試成功"}

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn