Attributes

Attributes in XML are much like attributes in HTML—they're name-value pairs that let you specify additional data in start and empty tags. To assign a value to an attribute, you use an equal sign.

For example, I'm assigning values to the STATUS attribute of the <CUSTOMER> elements in this XML to indicate the status of a customer's credit:

 <?xml version = "1.0" standalone="yes"?> <DOCUMENT> <CUSTOMER STATUS="Good credit"> <NAME> <LAST_NAME>Smith</LAST_NAME> <FIRST_NAME>Sam</FIRST_NAME> </NAME> <DATE>October 15, 2001</DATE> <ORDERS> <ITEM> <PRODUCT>Tomatoes</PRODUCT> <NUMBER>8</NUMBER> <PRICE>$1.25</PRICE> </ITEM> <ITEM> <PRODUCT>Oranges</PRODUCT> <NUMBER>24</NUMBER> <PRICE>$4.98</PRICE> </ITEM> </ORDERS> </CUSTOMER> <CUSTOMER STATUS="Lousy ...

Get Inside XML now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.