ورود

View Full Version : سوال: نشان دادن وضعیت اب و هوا



leman17
جمعه 06 شهریور 1394, 15:05 عصر
کسی میدونه چه جوری میشه وضعیت آب و هوای یه منطقه رو نوشت؟؟ میخوام خودم بنویسم و یه کم css توش به کار ببرم .....

combo_ci
چهارشنبه 25 شهریور 1394, 08:21 صبح
با این کد


$.ajax({
url: "http://api.wunderground.com/api/d283b7a2c939de59/conditions/forecast/lang:FA/q/Iran/mashhad.json",
dataType: "jsonp",
success: function (parsed_json) {
var forecasts = parsed_json.forecast.simpleforecast.forecastday;
var info = {
current_temp: parsed_json.current_observation.temp_c,
current_icon: parsed_json.current_observation.icon,
today: { icon: forecasts[0].icon, min: forecasts[0].low.celsius, max: forecasts[0].high.celsius, day: forecasts[0].date.weekday },
tommorow: { icon: forecasts[1].icon, min: forecasts[1].low.celsius, max: forecasts[1].high.celsius, day: forecasts[1].date.weekday },
second_day: { icon: forecasts[2].icon, min: forecasts[2].low.celsius, max: forecasts[2].high.celsius, day: forecasts[2].date.weekday }
};
}
});