Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好吧,在 HTML 4.01 中,例如<div id="example">我可以<a href="#example">滚动到那个 div。
<div id="example">
<a href="#example">
我怎样才能做出同样的效果<section class="asd xyz">?
<section class="asd xyz">
它们的工作方式相同。向该部分添加一个 ID,链接应该可以工作。
<section id="example"></section>
此代码跳转到部分#example。
#example
<a href="#example">Jump to example</a>
编辑: 纯 HTML 不允许您跳转到类名,这是有充分理由的。ID 是唯一的,而类可以根据需要重复使用。因此你不能跳转到一个类名,因为它可能没有一个目标。