我正在编写一个简单的天气应用程序并且被 for 循环卡住了。这个想法是获取一小部分位置的天气,并将每个位置的预测加载到自己的 div 中。这是到目前为止的代码:
$(function () {
var z = ["location ID1", "location ID2", etc.];
var n = ["location name1", "location name2", etc];
for (j = 0; j<z.length; j++) {
weatherQuery = 'SELECT * FROM rss WHERE url="http://xml.weather.yahoo.com/forecastrss/' + z[j] + '_c.xml"';
$('#weatherData').append($('<div/>', {id: 'c' + j}));
$('#c' + j + '').append('' + n[j] + '');
var weatherUrl = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIComponent(weatherQuery) + '&format=json';
$.getJSON(weatherUrl + '&callback=?', function (data) {
var weatherForecasts = data.query.results.item.forecast;
for (i=0; i<weatherForecasts.length; i++) {
var code = weatherForecasts[i].code;
$('#c' + j + '').append('<table style = border:none><tr><td class = weather-date>' + weatherForecasts[i].day + '</td><td class = weather-icon style = background-position:-' + (61 * code ) + 'px 0px></td><td class = weather-min>' + weatherForecasts[i].low + '°</td><td class = weather-max>' + weatherForecasts[i].high + '°</td></tr></table>');
}
});
}
});
据我从 Firebug 得知,第一部分有效 - 正在检索正确的天气数据,并且正在父 div 中创建新的 div。正确的位置名称也被附加到每个新的 div 中。如果它倒下,则将天气数据附加到每个 div。在第二个(最后一个)附加语句中识别子 div 的正确方法是什么,以便每个 div 有一次天气数据解析循环的迭代?谢谢。