如何在跳转到页面的特定部分后显示上述文本?

时间:2018-04-25 03:27:58

标签: html

我制作了一些目录,其中包含一些标题,以跳转到目标信息,因为帖子太长,差不多有4,000个单词。

跳跃工作正常,它会转到它应该去的部分,但不知何故它不会显示特定目标线上方的文本。我无法向上滚动,因为没有文字。

如何防止它“删除”上述文字?

我使用了以下代码:

<a href="#section-01">Click here to see section 01</a>
<a href="#section-02">Click here to see section 02</a>
<a href="#section-03">Click here to see section 03</a>

<a id="section-01">This is some info for section 01</a>
<a id="section-02">This is some info for section 02</a>
<a id="section-03">This is some info for section 03</a>

提前谢谢

2 个答案:

答案 0 :(得分:0)

您是否尝试在标签中加入一些<br>

如果没有href,请不要使用<a>。请尝试使用<span>

    <a href="#section-01">Click here to see section 01</a><br>
    <a href="#section-02">Click here to see section 02</a><br>
    <a href="#section-03">Click here to see section 03</a><br>

    <span id="section-01">This is some info for section 01</span><br>
    <span id="section-02">This is some info for section 02</span><br>
    <span id="section-03">This is some info for section 03</span><br>

答案 1 :(得分:0)

很难解释你的问题,在直接的HTML中应该没有&#34;擦除&#34;。

在html中,<section>标记可能是每个部分比<a>更好的选择。

<section id="section-01" > <h1>This is the title for section 1</h1> <p>This is the content of section 1</p> </section>