ajax跨域请求获取数据,ajax跨域请求获取jsonp数据

Insert title here

function getIntface(){

//?cityname=北京&key=e4bc21879a649b8db8ed5a6ed81e3610&dtype=json

$.ajax({

type : "get",

async:false,

url:"http://op.juhe.cn/onebox/weather/query",

data:{"cityname":"北京","key":"e4bc21879a649b8db8ed5a6ed81e3610","dtype":"json"},

dataType : "jsonp",

jsonp: "jsoncallback",

jsonpCallback:"success_jsonpCallback",

success : function(json){

alert(json);

}

});

}

function getIntface2(){

var url = "http://op.juhe.cn/onebox/weather/query";

var data = {"cityname":"北京","key":"e4bc21879a649b8db8ed5a6ed81e3610","dtype":"json"};

$.ajax({

type : "get",

async : false, //同步请求

url : url,

data : data,

dataType : "jsonp", //跨域请求需要使用jsonp

contentType: "application/x-www-form-urlencoded; charset=utf-8",

timeout:1000,

success:function(json){

alert(json.reason); //请求成功前台给出提示

alert(json.result.data.realtime.city_code);

},

error: function() {

alert("失败!");

}

});

}

原文:http://www.cnblogs.com/milude0161/p/6022592.html