﻿window.onload = function () {
    //var json = '[${weather_v}]';
    //alert(json);
    try {
        var weathers = eval(json);
        if (weathers.length > 0) {//+ weathers[0].weatherinfo.date_y 
            document.getElementById('weather').innerHTML = weathers[0].weatherinfo.city + "县 " + " " + weathers[0].weatherinfo.weather1 + " " + weathers[0].weatherinfo.temp1 + " " + weathers[0].weatherinfo.wind1;
            //document.getElementById('weather').innerHTML += " <a href='http://www.weather.com.cn/weather/101250703.shtml' class='fontzy' target='_blank'>更多</a>";
        }
    }
    catch (e) {
    }
}

