集册 jQuery 参考教程 jQuery get() 方法

jQuery get() 方法

Xebcnor     最近更新时间:2019-10-11 06:00:19

310

jQuery get() 方法

jQuery AJAX 方法 jQuery AJAX 方法

实例

发送一个 HTTP GET 请求到页面并取回结果:

$("button").click(function(){ $.get("demo_test.html",function(data,status){ alert("Data: " + data + "nStatus: " + status); }); });

运行实例

定义和用法

$.get() 方法使用 HTTP GET 请求从服务器加载数据。

实例

请求 "test.php",但是忽略返回结果:

$.get("test.php");

请求 "test.php" 并连同请求发送一些额外的数据(忽略返回结果):

$.get("test.php", { name:"Donald", town:"Ducktown" });

请求 "test.php" 并传递数据数组到服务器(忽略返回结果):

$.get("test.php", { 'colors[]' : ["Red","Green","Blue"] });

请求 "test.php" 并提醒请求的结果:

$.get("test.php", function(data){
alert("Data: " + data);
});

语法

$.get(URL,data,function(data,status,xhr),dataType)

展开阅读全文