我怎么用纺织品写这个(我用的是红布宝石)
<a href="#tips">Visit the Useful Tips Section</a>
<a name="tips">Useful Tips Section</a>
我知道第一部分,"Visit the Useful Tips Section":#tips
但是如何制作命名锚?
谢谢!
德布
我怎么用纺织品写这个(我用的是红布宝石)
<a href="#tips">Visit the Useful Tips Section</a>
<a name="tips">Useful Tips Section</a>
我知道第一部分,"Visit the Useful Tips Section":#tips
但是如何制作命名锚?
谢谢!
德布
纺织手册似乎表明除了使用直接的 HTML 之外别无他法:
<a name="tips"></a>
<h1>Useful Tips Section</h1>
答案表明:
h1(#tips). Useful Tips Section
不正确,因为它会生成:
<h1 id="tips">Useful Tips Section</h1>
这不是一个命名的锚。但是,您可以使用一些 Javascript 来完成这项工作。
h1(#tips) Useful Tips Section. -- Achieves the same effect (with some css)