码迷,mamicode.com
首页 > Web开发 > 详细

jquery中的ajax方法参数了解

时间:2015-08-31 13:46:56      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

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








jquery中的ajax方法参数了解

标签:

原文地址:http://my.oschina.net/u/2264370/blog/499444

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!