$.post()方法是jquery自己對ajax的一個簡單封裝,其效果等價於:jquery
$.ajax({ajax
url:url,json
type:"POST",函數
data:data,post
dataType:dataType,url
success:function(data){io
//success function
}數據類型
});請求
$.post()函數有四個參數:URL、data、success、dataType,分別是
URL:請求的路徑,對應ajax中的url
data:請求數據(可選)
success:請求成功以後執行的函數(可選)
dataType:請求成功以後返回的數據類型(可選)
以下例子:
$.post("/loginController/login","id=1",function(data){
//返回的JSON數據
},"json")