贡献者: addis
<?xml version="1.0" encoding="UTF-8"?>
,非必须
<book category="COOKING">
中,book
是 element 的名字,category
是一个 attribute,"COOKING"
是这个 attribute 的值。attribute 的名字可以是随意的并不是事先定义的。
一个例子
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book lang="en">
<categories>
<category>COOKING</category>
<category>ITALIAN</category>
</categories>
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book lang="en">
<categories>
<category>CHILDREN</category>
<category>FANTASY</category>
</categories>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
</bookstore>