function setWeather( city ){;
try{
XMLHttp.sendReq('GET', '/weathers.jsp?city='+encodeURI(city), '', getWeather);
}catch(e){alert(e.message());}
}
function getWeather(obj) {
try{
var strWeather = obj.responseText;
var allWeather = strWeather.split("^");
document.getElementById("showWeather").innerHTML = '<img src="/images/wimage/'+allWeather[0]+'" width="15" height="15"> '+allWeather[1]+' '+allWeather[2]+' '+allWeather[3]+' '+allWeather[4]+' '+allWeather[5];
}catch(e){alert(e.message());}
}
这是你的第一个站的JS调用的方法 你自己调用就好了
调用之后在
<div class="temp4weather"
id="showWeather"></div>
这里面显示