タグ名とその値をJavaスクリプトで取得しようとしていました。私が使用するxmlファイルは以下のようになります:
<root>
<note>
<to>Gil</to>
<from>
<firstname>john</firstname>
<lastname>corner</lastname>
</from>
<heading>Reminder</heading>
</note>
<note>
<to>Mary</to>
<from>
<firstname>Clara</firstname>
<lastname>Diana</lastname>
</from>
<heading>
How are you
</heading>
</note>
</root>
出力を次のようにしたいと思います。
TageName : root Attribute: 0 Text: null
TageName : note Attribute: 0 Text: null
TageName : to Attribute: 0 Text: Gil
TageName : from Attribute: 0 Text: null
TageName : firstname Attribute: 0 Text: john
TageName : lastname Attribute: 0 Text: corner
TageName : heading Attribute: 0 Text: Reminder
TageName : note Attribute: 0 Text: null
TageName : to Attribute: 0 Text: Mary
TageName : from Attribute: 0 Text: null
TageName : firstname Attribute: 0 Text: Clara
TageName : lastname Attribute: 0 Text: Diana
TageName : heading Attribute: 0 Text: How are you
これは可能ですか?もしそうなら、私を助けてください...