接口
js请求代码
$.ajax({
url:'http://api.weatherdt.com/common/?area=101020100&type=forecast&key=XXXXXX',
type : 'post',
cache : false,
dataType : 'jsonp',
success : function(data) {
for (var obj in data.forecast){
alert(obj);
}
}
});