$(selector).get(URL, data, function(data, status, xhr), dataType)
参数 | 值 |
URL | 这是请求发送到的URL。这是必填参数。 |
data | 这是一个可选参数。它是与请求一起发送到服务器的数据。它可以是普通对象或字符串。 |
function(data, status, xhr), dataType) | 这也是一个可选参数。这是一个在成功的服务器请求上执行的回调函数。 它还具有三个参数,分别是data,status和xhr,其中数据包含来自请求的结果数据,status表示请求状态,例如"成功", "错误"等,并且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 get() method </title>
<script src = "/ajax/libs/jquery/3.5.1/jquery.min.js"> </script>
</head>
<body>
<h3> This is an example of using the get() 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() {
$.get("test.html", function(data,status) {
document.getElementById("p1").innerHTML = data;
document.getElementById("p2").innerHTML = "Status: " + status;
});
});
});
</script>
</body>
</html>
This is an example of using the get() method in jQuery
Click the following button to see the effect.