Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
780 views
in Technique[技术] by (71.8m points)

html锚点为什么跳转失败

跳转过去没有到锚点

index.html

<div class="foot-item item-3">
    <p>关于我们</p>
    <span><a href="about.html#mao">团队介绍</a></span>
</div>

about.html

<div class="about-contact about-wrap" name="mao">

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

div 不支持 name 这个属性来创建锚点.锚点是在 a 标签的 name 属性

另外,根据 Mozilla 的文档,html5 中,a 的 name 属性也不支持了.改为了搜索唯一的 id 属性


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...