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.
hrefs单击第一个跳过时,我有两个跳过的 div,href它应该自动向下滚动到下一个 div。
hrefs
href
我试过这样
<div class="skip"><a href='javascript:move_down()' onclick="skipWindow(2);">skip</a></div> function move_down() { window.scrollBy(0, 50); }
使用锚链接或 HTML5 术语中的片段有什么问题。不需要 JS(尽管如果动态需要,JS 可以插入正确的链接/片段)。
查看 带有“name”或“id”的 HTML 锚?