//天氣開始 var weather=new Array(); function weatherObj(citycode,cityname,weather,wind,uv,temperature) { this.citycode=citycode; this.cityname=cityname; this.weather=weather; this.wind=wind; this.uv=uv; this.temperature=temperature; } weather[0]=new weatherObj('294','汕頭','晴轉多雲','東北風4-5級','中等','14℃∼22℃'); weather[1]=new weatherObj('336','潮州','晴轉多雲','微風','中等','14℃∼23℃'); weather[2]=new weatherObj('337','揭陽','晴','微風','中等','13℃∼22℃'); weather[3]=new weatherObj('297','汕尾','晴轉多雲','微風','中等','15℃∼23℃'); //天氣結束