天气预报api免费接口 jquery中调用天气预报API(ajax)?

jquery中调用天气预报API(ajax)?$.getScript("http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js", f

jquery中调用天气预报API(ajax)?

$.getScript("http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js", function(_result) {

if (remote_ip_info.ret == "1") {

$.ajax({

type: "GET",

url: "http://wthrcdn.etouch.cn/weather_mini?city=" remote_ip_info.city,

data: "",

success: function(msg){

console.log(msg)

}

})

}

})