$(selector).get(urldatasuccess(response,status,xhr)dataType)

url 必需。规定将请求发送的哪个 URL。

data 可选。规定连同请求发送到服务器的数据。

success(response,status,xhr)  可选。规定当请求成功时运行的函数。

succes的参数:

response - 包含来自请求的结果数据

status - 包含请求的状态

xhr - 包含 XMLHttpRequest 对象

dataType

可选。规定预计的服务器响应的数据类型。

默认地,jQuery 将智能判断。

可能的类型:"xml" "html""text""script""json""jsonp"

$().get()该函数是简写的 Ajax 函数,等价于:

$.ajax({

  url: url,

  data: data,

  success: success,

  dataType: dataType

});

 

$.post(url,data,success(data, textStatus, jqXHR),dataType)

url 必需。规定把请求发送到哪个 URL。

data 可选。映射或字符串值。规定连同请求发送到服务器的数据。

success(data, textStatus, jqXHR) 可选。请求成功时执行的回调函数。

dataType

可选。规定预期的服务器响应的数据类型。

默认执行智能判断(xml、json、script 或 html)。

 

$.ajax([settings])

settings

可选。用于配置 Ajax 请求的键值对集合。

可以通过 $.ajaxSetup() 设置任何选项的默认值。

$.ajax(

  async: ,

  url: ,

  success: ,

  dataType: ,

)

 

async

类型:Boolean

默认值: true。默认设置下,所有请求均为异步请求。如果需要发送同步请求,请将此选项设置为 false。

注意,同步请求将锁住浏览器,用户其它操作必须等待请求完成才可以执行。

url

类型:String

默认值: 当前页地址。发送请求的地址。