2014-06-17 29 views
-1

將以下問題如何從普通文本超鏈接到項目符號文本?

在給定的項目符號列表的說明,我想從正常文本指向彈頭3的超鏈接,

<ol> 
<li> Set the value to zero</li> 
<li> Update the zig file</li> 
<li id="aeiou5"> Run the script</li> 
</ol> 

<p>If you get any error update the die file and redo step 3. </p> 

在上述文本我想「步驟3」是一個超鏈接指向第三個項目符號列表。
我寫了這個XML代碼,<xref href="procedure.xml#aeiou5"/> 其中程序is the name of the file and aeiou5`是第3個子彈的id。但它不工作。

回答

0

您沒有正確關閉<li>標記。

使用<li id="desiredId">Text to display</li>

編輯: 我看你編輯您的OP。

您可以使用<a href="#aeiou5">step 3</a>鏈接到id's。然後它將跳轉到具有匹配id的元素。

+0

實際上是錯誤的在這裏寫錯了,我已經糾正了它 – user3747592

+0

如果你現在看到代碼,它是正確的語法明智但仍然沒有鏈接。 – user3747592