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.
我的网站的重要内容距离顶部 300 像素,所以我希望它直接在那个高度打开,让用户可以选择向上滚动。哪种方法更容易实现这一目标?
我找到了一种选择。我创建了一个锚点,然后让它直接加载到它。我不想使用锚,但没有人回答我...
<body onload="location.href ='#home'"> <a id="home"></a>
编辑:这就是我要找的东西!!
<script type="text/javascript"> function Scrolldown() { window.scroll(0,100); } window.onload = Scrolldown; </script>