jquery post方法的參數有:1、URL,規定將請求傳送到哪個網址;2、data,規定連同請求傳送到伺服器的資料;3、function(),規定當請求成功時執行的函數;4、dataType,規定預期的伺服器回應的資料類型。
本教學操作環境:windows7系統、jquery1.10.2版本、Dell G3電腦。
post() 方法使用 HTTP POST 請求從伺服器載入資料。
語法:
$(selector).post(URL,data,function(data,status,xhr),dataType)
post() 方法支援4個參數:
描述 | |
---|---|
URL | 必要。規定將請求傳送到哪個 URL。|
data | #可選。規定連同請求發送到伺服器的資料。|
function(data,status,xhr) | # 可選。規定當請求成功時運行的函數。
額外的參數:
|
|
"script" - 以JavaScript 執行回應,並以純文字傳回
"json" - 以JSON 執行回應,並以JavaScript 物件傳回
"jsonp" - 使用JSONP 載入一個JSON 區塊,將新增一個"?callback=?" 到URL 來規定回呼
###範例:######<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $.post("/try/ajax/demo_test_post.php",{ name:"PHP中文网", url:"https://www.php.cn/" }, function(data,status){ alert("数据: \n" + data + "\n状态: " + status); }); }); }); </script> </head> <body> <button>发送一个 HTTP POST 请求页面并获取返回内容</button> </body> </html>
以上是jquery post方法的參數有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!