jQuery jQuery.post()方法
描述
jQuery.post( url, [data], [callback], [type] ) 方法使用POST HTTP请求从服务器加载页面。
该方法返回XMLHttpRequest对象。
语法
以下是使用该方法的简单语法-
$.post( url, [data], [callback], [type] )
参数
这里是该方法使用的所有参数的描述 –
- url - 包含要发送请求的URL的字符串
-
data - 这个可选参数表示要发送到服务器的键/值对或.serialize()函数的返回值
-
callback - 这个可选参数表示在成功加载数据时要执行的函数
-
type - 这个可选参数表示要返回到callback函数的数据类型:”xml”、”html”、”script”、”json”、”jsonp”或”text”
示例
假设我们在result.php文件中有以下PHP内容 –
<?php
if( _REQUEST["name"] ) {name = _REQUEST['name'];
echo "Welcome ".name;
}
?>
以下是一个简单的示例,展示了该方法的使用方式。
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
</script>
<script type = "text/javascript" language = "javascript">
(document).ready(function() {("#driver").click(function(event){
.post( "result.php",
{ name: "Zara" },
function(data) {('#stage').html(data);
}
);
});
});
</script>
</head>
<body>
<p>Click on the button to load result.html file −</p>
<div id = "stage" style = "background-color:cc0;">
STAGE
</div>
<input type = "button" id = "driver" value = "Load Data" />
</body>
</html>
这将生成以下结果−