jQuery ajax post() 方法

原文地址:http://www.w3school.com.cn/jquery/ajax_post.asp

语法:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

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

[/pcsh]

参数 描述
url 必需。规定把请求发送到哪个 URL。
data 可选。映射或字符串值。规定连同请求发送到服务器的数据。
success(data, textStatus, jqXHR) 可选。请求成功时执行的回调函数。
dataType 可选。规定预期的服务器响应的数据类型。

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

简写的ajax

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

$.ajax({
  type: 'POST',
  url: url,
  data: data,
  success: success,
  dataType: dataType
});

[/pcsh]

 

 

 

此处评论已关闭