jquery post方法的语法结构与例子

发布时间:2020-09-26编辑:脚本学堂
有关jquery post方法的用法,重点介绍了post方法的语法结构与参数选项,通过http post请求从服务器上请求数据,使用jquery post方法实现数据异步传输。

jquery中ajax post()方法的用法

$.post() 方法:
通过http post请求从服务器上请求数据。

语法结构:
 

$.post(URL,data,callback);

参数解析:
1、URL:必须,规定请求的URL。
2、data:可选,规定连同请求发送的数据。

例子:
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jquery post方法的用法</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#bt").click(function(){
$.post("mytest/demo/antzone.html",function(data,status){
alert("Data:"+data+"nStatus:"+status);
})
})
})
</script>
</head>
<body>
<input type="button" value="查看效果" id="bt"/>
</body>
</html>