jQuery.get(url, [data], [callback], [type])

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery.get(url, [data], [callback], [type])相关的知识,希望对你有一定的参考价值。

【写在前面】

原文地址:http://jquery.cuishifeng.cn/jQuery.get.html

 

概述

通过远程 HTTP GET 请求载入信息。

这是一个简单的 GET 请求功能以取代复杂 $.ajax 。请求成功时可调用回调函数。如果需要在出错时执行函数,请使用 $.ajax。

jQuery 1.12 中 jQuery.post 和 jQuery.get 支持对象参数,这样一来好处还比较多,比如设置回调函数的context,或者跨域 post 时可以withCredential: true。用法可以参考最后一个示例。

参数

url,[data],[callback],[type]String,Map,Function,StringV1.0

url:待载入页面的URL地址

data:待发送 Key/value 参数。

callback:载入成功时回调函数。

type:返回内容格式,xml, html, script, json, text, _default。

示例

描述:

请求 test.php 网页,忽略返回值。

jQuery 代码:
$.get("test.php");

描述:

请求 test.php 网页,传送2个参数,忽略返回值。

jQuery 代码:
$.get("test.php", { name: "John", time: "2pm" } );

描述:

显示 test.php 返回值(HTML 或 XML,取决于返回值)。

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

描述:

显示 test.cgi 返回值(HTML 或 XML,取决于返回值),添加一组请求参数。

jQuery 代码:
$.get("test.cgi", { name: "John", time: "2pm" },
          function(data){
          alert("Data Loaded: " + data);
});

描述:

jQuery 1.12 中 jQuery.get()支持对象参数,具体的参数可以参考 $.ajax():

jQuery 代码:
jQuery.post({
            url: “/example”
});

以上是关于jQuery.get(url, [data], [callback], [type])的主要内容,如果未能解决你的问题,请参考以下文章

jQuery $.get(url,data,callback,type) 返回值给全局变量赋值的问题

JQuery中的Ajax

JQuery的getpostajax方法

jQuery.post(url, [data], [callback], [type])

jQuery中$.get()$.post()和$.ajax()

jQuery的ajax详解