XLink是一種基於屬性的語法,用來在XML文檔中添加鏈接。XLink鏈接可以是單向的,如HTML中的A元素,它也可以是雙向的,在兩個方向上鏈接兩篇文檔,因此能夠從A到B或從B到A。每個XLink元素必須具有一個xlink:type屬性,指出連接類型。屬性xlink:href指向所鏈接的資源URI。
XLink是一種基於屬性的語法,用來在XML文檔中添加鏈接。XLink鏈接可以是單向的,如HTML中的A元素,它也可以是雙向的,在兩個方向上鏈接兩篇文檔,因此能夠從A到B或從B到A。每個XLink元素必須具有一個xlink:type屬性,指出連接類型。屬性xlink:href指向所鏈接的資源URI。下面是一個簡單鏈接的示例:
<test xmlns:xlink = "http://www.w3.org/1999/xlink"
xlink:type = "simple"
xlink:href = "http://www.ringkee.com/xml.html">
<author>Jims</author>
<date>2005/02/18</date>
</test>
xlink:type屬性類型共有六種,分別是:simple,extended,locator,arc,title,resource。
xlink:show屬性可告訴浏覽器或應用程序在激活鏈接時應該做什麼,它有五種可能的動作,分別是:
new,在新窗口中顯示鏈接內容。
replace,在當前窗口顯示鏈接內容。
embed,在當前鏈接元素的位置嵌入內容。
other,動作不確定,由應用程序指定。
none,無動作。
xlink:actuate屬性可告訴浏覽器何時顯示鏈接,它有四種可能值:
本文由(http://www.jb51.net)整理發布!轉載請注明出處,謝謝!
onLoad,一旦發現鏈接,馬上顯示。
onRequest,當用戶提出請求時才顯示。
other,由文檔中的其它標記,而不是xlink,來決定何時顯示。
none,不指定。
一個和HTML中的A元素作用一樣的示例:
<test xmlns:xlink = "http://www.w3.org/1999/xlink"
xlink:type = "simple"
xlink:href = "http://www.ringkee.com/xml.html"
xlink:actuate = "onRequest"
xlink:show = "replace" >
<author>Jims</author>
<date>2005/02/18</date>
</test>
一個在頁面嵌入圖像的示例:
<image xlink:type = "simple"
xlink:actuate = "onLoad"
xlink:show = "embed"
xlink:href="http://www.ringkee.com/flower.png"
width = "320" height = "240" />
xlink:actuate和xlink:show是可選的。
xlink:title和xlink:role屬性可指定資源之間的描述,xlink:title包含少量描述遠程資源的文本,xlink:role包含URI,指向資源的較長描述。