私はこのようなxml文字列を持っています:
<?xml version="1.0"?>
<itemsPrice>
<setA>
<Category Code="A1">
<price>30</price>
</Category>
<Category Code="A2">
<price>20</price>
</Category>
</setA>
<setB>
<Category Code="A3">
<price>70</price>
</Category>
<Category Code="A4">
<price>80</price>
</Category>
</setB>
</itemsPrice>
javascript変数または配列の属性「Code」の値を取得するにはどうすればよいですか?私が欲しいのは次のようなものです:A1、A2、A3、A4、できればアレイで。または、それが「each」関数内で取得できる場合も同様です。これをJavascriptで行うにはどうすればよいですか?
これが私が試したことです:
var xml=dataString; // above xml string
xmlDoc = $.parseXML( xml );
$xml = $( xmlDoc );
$code = $xml.find("Category");
alert($code.text()); // gives me the values 30 20 70 80
// I want to get the values A1 A2 A3 A4