使用 JavaScript 获取 div 标签滚动位置
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/4373667/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-23 12:08:26 来源:igfitidea点击:
Get div tag scroll position using JavaScript
提问by santosh singh
How do I get the amount of scroll in a div tag using JavaScript? Please provide me with an example.
如何使用 JavaScript 获取 div 标签中的滚动量?请给我一个例子。
I don't want to use jQuery, only JavaScript.
我不想使用 jQuery,只想使用 JavaScript。
回答by santosh singh
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function scollPos() {
var div = document.getElementById("myDiv").scrollTop;
document.getElementById("pos").innerHTML = div;
}
</script>
</head>
<body>
<form id="form1">
<div id="pos">
</div>
<div id="myDiv" style="overflow: auto; height: 200px; width: 200px;" onscroll="scollPos();">
Place some large content here
</div>
</form>
</body>
</html>
回答by Breezer
you use the scrollTop attribute
你使用 scrollTop 属性
var position = document.getElementById('id').scrollTop;