4.27 jQuery AJAX get() 和 post() 方法
阿新 • • 發佈:2021-06-20
HTTP 請求:GET vs. POST
兩種在客戶端和伺服器端進行請求-響應的常用方法是:GET 和 POST。
- GET- 從指定的資源請求資料
- POST- 向指定的資源提交要處理的資料
GET 基本上用於從伺服器獲得(取回)資料。註釋:GET 方法可能返回快取資料。
POST 也可用於從伺服器獲取資料。不過,POST 方法不會快取資料,並且常用於連同請求一起傳送資料。
下面的例子使用 $.get() 方法從伺服器上的一個檔案中取回資料:
$("button").click(function(){ $.get("demo_test.php",function(data,status){ alert("資料: " + data + "\n狀態: " + status); }); });
下面的例子使用 $.post() 連同請求一起傳送資料:
$("button").click(function(){ $.post("/try/ajax/demo_test_post.php", { name:"菜鳥教程", url:"http://www.runoob.com" }, function(data,status){ alert("資料: \n" + data + "\n狀態: " + status); }); });