gpt4 book ai didi

javascript - 当我加载 html 页面时,如何将表格设置为已经在某一列滚动?

转载 作者:行者123 更新时间:2023-11-28 06:18:06 25 4
gpt4 key购买 nike

我有一个表,该表具有不同数量的列,具体取决于从我的数据库中输入的从开始日期到结束日期的月数。我知道 current_date 是一个变量,我需要在我的 current_date 顶部使用 x 滚动条加载表格,因为当前日期可能离表格的开头很远,我应该向它滚动。

Click here to see my table

是否可以将 x-scrollbar 设置为从某个位置开始?

最佳答案

这对你有帮助

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>scrollTop demo</title>
<style>
div.demo {
background: #ccc none repeat scroll 0 0;
border: 3px solid #666;
margin: 5px;
padding: 5px;
position: relative;
width: 200px;
height: 100px;
overflow: auto;
}
p {
margin: 10px;
padding: 5px;
border: 2px solid #666;
width: 1000px;
height: 1000px;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>

<div class="demo"><h1>lalala</h1><p>Hello</p></div>

<script>
$( "div.demo" ).scrollTop( 300 );
</script>

</body>
</html>

jQuery scrollTop

关于javascript - 当我加载 html 页面时,如何将表格设置为已经在某一列滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35775611/

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