1. 程式人生 > >js獲取指定城市天氣資訊

js獲取指定城市天氣資訊

$.ajax({
    	url:'http://wthrcdn.etouch.cn/weather_mini?city=廣州',
    	data:"",
    	dataType:"jsonp",
    	success:function(data){
    		console.log(data);
    	}
    })