Ajax的请求的方式(一共就6种方式)

get方式:


返回值:XMLHttpRequestjQuery.get(url, [data], [callback], [type])


参数解释:


url:待载入页面的URL地址 data:待发送 Key/value 参数。 callback:载入成功时回调函数。 type:返回内容格式,xml, html, script, json, text, _default。


post方式:


jQuery.post(url, [data], [callback], [type]), 通过远程 HTTP POST 请求载入信息。这是一个简单的 POST 请求功能以取代复杂 $.ajax 。请求成功时可调用回调函数。如果需要在出错时执行函数,请使用 $.ajax。 参数解释:


url:发送请求地址。 data:待发送 Key/value 参数。 callback:发送成功时回调函数。 type:返回内容格式,xml, html, script, json, text, _default。


Ajax方式:


jQuery.ajax(url,[settings]):jQuery 底层 AJAX 实现。简单易用的高层实现见 $.get, $.post 等。$.ajax() 返回其创建的 XMLHttpRequest 对象。大多数情况下你无需直接操作该函数,除非你需要操作不常用的选项,以获得更多的灵活性。


参数解释:

url:一个用来包含发送请求的URL字符串。

settings:AJAX 请求设置。所有选项都是可选的。(除了url,都是属于setting的配置)

案例:

$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(msg){
alert( "Data Saved: " + msg );
}
});