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

jquery的ajax和jsonp的写法

时间:2016-11-27 13:51:20      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:get   pos   function   发送数据   error   写法   baidu   strong   com   

交互 ajax jsonp
ajax跟之前一模一样
$(document).ready(function(){
    $.ajax({
        url:‘get.php‘,
        type:‘get‘, //或者写‘post‘
    timeout:"3000",
        cache:"false",
        data:{
            a:12,
            b:5
        },
        success:function(str){
            alert(str);
        },
        error:function(err){
            alert(err);
        }
    });
});
注意:向后台传一个json的写法
$.ajax({
url: URL+‘/tasks/task‘,
type: ‘PUT‘,
   chache:"false",

contentType: "application/json",
data: JSON.stringify({
data: {
"key":"value"
}
}),
dataType: "json",
success:function(str){
if(str.errcode==0){
//发送数据成功
}
},
error:function(err){
alert(err);
}
});

 
jsonp
$(document).ready(function(){
    $.ajax({
url:‘https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su‘,
        dataType:‘jsonp‘,
        jsonp:‘cb‘,
        data:{
            wd:‘XX.value‘
        },
        success:function(result){
            alert(result.s);
        } ,
        error:function(err){alert(err)}
    });
}); 

jquery的ajax和jsonp的写法

标签:get   pos   function   发送数据   error   写法   baidu   strong   com   

原文地址:http://www.cnblogs.com/sweeeper/p/6106251.html

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