$(selector).post(URL, data, function(data, status, xhr), dataType)
参数 | 值 |
URL | 这是请求发送到的URL。这是必填参数。 |
data | 这是一个可选参数。它是与请求一起发送到服务器的数据。 |
function(data, status, xhr), dataType) | 这也是一个可选参数。它是在成功的服务器请求上执行的回调函数。 它还具有三个参数: data,status, 和 xhr ,其中 data 包含来自服务器的结果数据, 状态 代表请求状态例如"成功","错误"等,并且 xhr 包含XMLHttpRequest对象。 |
dataType | 这也是一个可选参数,用于定义我们期望服务器提供的数据类型。类型可以是"text"," json"," jsonp"," html","script"和" XML"。 |
<h1> Hello World </h1>
<h2> Welcome to the bianchenghao6.com </h2>
<!DOCTYPE html>
<html>
<head>
<title> jQuery post() method </title>
<script src= "/ajax/libs/jquery/3.5.1/jquery.min.js"> </script>
</head>
<body>
<h3> This is an example of using the post() method in jQuery </h3>
<p> Click the following button to see the effect. </p>
<button> Click me </button>
<p id = "p1"> </p>
<p id = "p2"> </p>
<script>
$(document).ready(function() {
$("button").click(function() {
$.post("test.html", function(data,status) {
document.getElementById("p1").innerHTML = data;
document.getElementById("p2").innerHTML = "Status: " + status;
});
});
});
</script>
</body>
</html>