Link to second node : xlink « Introduction « XML Tutorial






<?xml version = "1.0"?>
<contacts xmlns:xlink = "http://www.w3.org/1999/xlink">

   <contact
      xlink:type = "simple"
      xlink:href = "contacts.xml#xpointer(//contact[2])"
      xlink:role = "http://www.java2s.com"
      xlink:title = "Retrieve author name"
      xlink:show = "replace"
      xlink:actuate = "onLoad">

      Information
   </contact>

</contacts>


File: contacts.xml

<?xml version = "1.0"?>
<contacts>
   <contact id = "author01">author 1</contact>
   <contact id = "author02">author 2</contact>
   <contact id = "author03">author 3</contact>
</contacts>








1.10.xlink
1.10.1.XML file that shows simple linking
1.10.2.show and actuate attribute
1.10.3.Link to second node