jquery中的ajax方法参数,常用参数如下:
$.ajax({ type: "get", url: ‘http://xxx.xxx.com/xxx/xxx/xxx/personId‘, dataType: "json", data:{‘id‘:personId}, success: function(data){ var result = JSON.parse(data.result); var retData = result.retData; $(".result").eq(0).html(personId); $(".result").eq(1).html(retData.address); $(".result").eq(2).html(retData.birthday); $(".result").eq(3).html(retData.sex == ‘‘? ‘‘ : (retData.sex==‘F‘?‘女‘:‘男‘)); if(result.retMsg == ‘success‘){ $(".result").eq(4).html(‘身份证号码为合法号码 !‘); }else { $(".result").eq(4).html(‘身份证号码为无效号码 !‘); } }, error:function (){ $(".result").eq(0).html(personId); $(".result").eq(4).html(‘身份证号码为无效号码 !‘); } });
1、type
String类型的参数,请求方式(post或get)默认为get。
2、url
String类型的参数,(默认为当前页地址)发送请求的地址。
3、dataType
String类型的参数,服务器返回的数据类型。可用的类型如下:
xml:返回XML文档。
html:返回纯文本HTML信息;包含的script标签会在插入DOM时执行。
script:返回纯文本JavaScript代码。不会自动缓存结果。除非设置了cache参数。注意在远程请求时(不在同一个域下),所有post请求都将转为get请求。
json:返回JSON数据。
jsonp:JSONP格式。使用SONP形式调用函数时,例如myurl?callback=?,JQuery将自动替换后一个“?”为正确的函数名,以执行回调函数。
text:返回纯文本字符串。
4.data
Object或String类型的参数,发送到服务器的数据。如果不是字符串,将自动转换为字符串格式。
get请求中将附加在url后。对象必须为key/value格式,例如{foo1:"bar1",foo2:"bar2"}转换 为&foo1=bar1&foo2=bar2。如果是数组,JQuery将自动为不同值对应同一个名称。例如{foo: ["bar1","bar2"]}转换为&foo=bar1&foo=bar2。
5、success
Function类型的参数,请求成功后调用的回调函数。
6、error
Function类型的参数,请求失败时被调用的函数。
更多参数详情查看:http://www.cnblogs.com/tylerdonet/p/3520862.htm
时间: 2024-10-19 02:43:19