jquery post如何传值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery post如何传值相关的知识,希望对你有一定的参考价值。
定义和用法post() 方法通过 HTTP POST 请求从服务器载入数据。
语法
jQuery.post(url,data,success(data, textStatus, jqXHR),dataType)
参数描述
url 必需。规定把请求发送到哪个 URL。
data 可选。映射或字符串值。规定连同请求发送到服务器的数据。
success(data, textStatus, jqXHR) 可选。请求成功时执行的回调函数。
dataType 可选。规定预期的服务器响应的数据类型。默认执行智能判断(xml、json、script 或 html)。
调用:
$.post("ajax/ajax.php","name":"小明" function(data)
$(".result").html(data);
); 参考技术A
jQuery.post(url, [data], [callback], [type])
参数:
url:发送请求地址。
data:待发送 Key/value 参数。
callback:发送成功时回调函数。
type:返回内容格式,xml, html, script, json, text, _default。
举例:
function(data)
//POST成功后执行本函数,DATA为返回的数据。
);本回答被提问者和网友采纳 参考技术B jQuery.post(url, [data], [callback], [type])
参数:
url:发送请求地址。
data:待发送 Key/value 参数。
callback:发送成功时回调函数。
type:返回内容格式,xml, html, script, json, text, _default。
举例:
$.post("test.php", "func": "getNameAndTime" ,
function(data)
//POST成功后执行本函数,DATA为返回的数据。
); 参考技术C jquery api是最好的东西
以上是关于jquery post如何传值的主要内容,如果未能解决你的问题,请参考以下文章