scrollTo 滚动到页面顶部
我有以下 JavaScript 代码。
当页面加载时,它会滚动到正确的位置。当我单击链接运行该函数时,页面滚动到页面顶部。
我该如何解决这个问题?
<html>
<head>
<script type="text/javascript">
function scroll() {
window.scrollTo(0, 400)
}
</script>
<title></title>
</head>
<body onload="window.scrollTo(0, 400)">
<img src="a.jpg"/>
<a href="#" onclick="scroll">comments1</a>
</body>
</html>
I have the following Javascript code.
When the page is loaded it is scrolled to the right position. When I click on the link to run the function the page scrolls to the top of the page.
How do I fix this?
<html>
<head>
<script type="text/javascript">
function scroll() {
window.scrollTo(0, 400)
}
</script>
<title></title>
</head>
<body onload="window.scrollTo(0, 400)">
<img src="a.jpg"/>
<a href="#" onclick="scroll">comments1</a>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
它应该可以修复它。
Use
that should fix it.
再补充一点细节,通过
return false;
,页面滚动后点击事件继续,点击事件跟随href
到#< /code>,这是页面的顶部。解决此问题的另一种方法是:
返回 false 更好,IMO,但这也可以解决问题。
To add a bit more detail, with the
return false;
, the click event continues after the page is scrolled, and the click event follows thehref
to#
, which is the top of the page. An alternative way to fix this is:Returning false is better, IMO, but this would also do the trick.