XLink 实例

让我们通过研究一个实例来学习一些基础的 XLink 语法

XML 实例文档

请看下面的 XML 文档,"bookstore.xml",它用来呈现书籍:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2.  
  3. <bookstore xmlns:xlink="http://www.w3.org/1999/xlink">
  4.  
  5. <book title="Harry Potter">
  6. <description
  7. xlink:type="simple"
  8. xlink:href="http://book.com/images/HPotter.gif"
  9. xlink:show="new">
  10. As his fifth year at Hogwarts School of Witchcraft and
  11. Wizardry approaches, 15-year-old Harry Potter is.......
  12. </description>
  13. </book>
  14.  
  15. <book title="XQuery Kick Start">
  16. <description
  17. xlink:type="simple"
  18. xlink:href="http://book.com/images/XQuery.gif"
  19. xlink:show="new">
  20. XQuery Kick Start delivers a concise introduction
  21. to the XQuery standard.......
  22. </description>
  23. </book>
  24.  
  25. </bookstore>

在上面的例子中,XLink 文档命名空间被声明于文档的顶部:

  1. xmlns:xlink="http://www.w3.org/1999/xlink"

这意味着文档可访问 XLink 的属性和特性。

xlink:type="simple" 可创建简单的类似 HTML 的链接。您也可以规定更多的复杂的链接(多方向链接),但是目前,我们仅使用简易链接。

xlink:href 属性规定了要链接的 URL,而 xlink:show 属性规定了在何处打开链接。xlink:show="new" 意味着链接(在此例中,是一幅图像)会在新窗口打开。