1

いくつかの 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"));
});

戻り値は「未定義」です

4

1 に答える 1

3

好き:

var attr = $(this).attr("forecast_icon_code");
if (typeof attr !== 'undefined') {
    ..do something with it
}

また

if ($(this).is('[forecast_icon_code]')) {
    ..have the attribute
}
于 2013-09-15T06:54:16.047 に答える