ajax 跨域天气,通过Jsonp从中国天气网跨域获取天气预报信息

function get_weather(o) { //跨域获取天气信息

var code = o.val();

$.ajax({

type: "get",

async: false,

cache: false,

url: "get_json.php",

dataType: "jsonp",

data: {

code_city: code

},

jsonpCallback: "weather_callback",

beforeSend: function() {

                $(".box").html("")

},

success: function(msg) {

var w_str = "";

                var img2  = msg.weatherinfo.img2 != 99 ? "-": "";

                var img4  = msg.weatherinfo.img4 != 99 ? "-": "";

                var img6  = msg.weatherinfo.img6 != 99 ? "-": "";

var temp1 = sort_wd(msg.weatherinfo.temp1);

var temp2 = sort_wd(msg.weatherinfo.temp2);

var temp3 = sort_wd(msg.weatherinfo.temp3);

w_str += "

"+ msg.weatherinfo.date_y+ " " + msg.weatherinfo.week+ " " + "所在城市:" + msg.weatherinfo.city + "

";

                w_str += "

今天:" + temp1 + " " + msg.weatherinfo.weather1 + "" + img2 + "

";

                w_str += "

明天:" + temp2 + " " + msg.weatherinfo.weather2 + "" + img4 + "

";

                w_str += "

后天:" + temp3 + " " + msg.weatherinfo.weather3 + "" + img6 + "

";

$(".box").html(w_str).addClass("weather_box");

},

error: function() {

$(".box").html('加载失败!');

}

});

}

b6d5ebab3b63f2d985a71fe027f3d3e2.png

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值