如何从普通文本到项目符号文本的超链接?

时间:2014-06-17 08:16:25

标签: xml

问题的解释 -

在给定的项目符号列表中,我想要一个从普通文本

指向项目符号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>

在上面的文字中我想要&#39;步骤3&#39;是指向第3个项目符号列表的超链接。
我写了这个XML代码,<xref href="procedure.xml#aeiou5"/>  程序is the name of the file and aeiou5`是第3个子弹的id。但它不起作用。

1 个答案:

答案 0 :(得分:0)

您没有正确关闭<li>代码。

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

编辑: 我看到你编辑了OP。

您可以使用<a href="#aeiou5">step 3</a>链接到ID。然后它将跳转到具有匹配id的元素。