5

例えば:

test.xml

<fruit taste="good">whatever</fruit>

TinyXMLを使用して、タグ「フルーツ」(もちろん「フルーツ」)の名前文字列を取得するにはどうすればよいですか?

4

1 に答える 1

15

TiXmlElement :: Value()を使用する

Value関数は、タイプに基づいてさまざまなものを返します。

    Document:   filename of the xml file
    Element:    name of the element
    Comment:    the comment text
    Unknown:    the tag contents
    Text:       the text string
于 2011-09-16T17:13:44.977 に答える