いくつかの XML ドキュメントに関する問題を解決してください。
ドキュメントを解析するとき、関連するデータのみを取得する必要があるところまで来ています。
ループしている一連の子要素の例を次に示します。
<element type="forecast_icon_code">3</element>
<text type="precis">Partly cloudy.</text>
<text type="probability_of_precipitation">10%</text>
$(locationInfo).children().each(function(){
alert($(this).attr("forecast_icon_code"));
});
戻り値は「未定義」です