gpt4 book ai didi

javascript - 需要javascript在页面加载后自动滚动到目标html元素

转载 作者:数据小太阳 更新时间:2023-10-29 05:06:38 25 4
gpt4 key购买 nike

我是后端开发人员,刚接触 javascript。谁能提供几行脚本,让页面在页面加载后自动滚动到“目标”元素

<html>
<bod>

<p id="target">...</p> // auto-scroll here

</bod>
</html>

谢谢

最佳答案

您可以在 window.onload 事件中的元素上使用 scrollIntoView..

在你的情况下你会做:

window.onload = function() {
var el = document.getElementById('target');
el.scrollIntoView(true);
}

可以在这里找到好的文档: MDN scrollIntoView

关于javascript - 需要javascript在页面加载后自动滚动到目标html元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5013281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com