获取页面滚动条的高度
时间: 2024-04-24 17:26:47 浏览: 124
javascript获取滚动条高度 页面宽度与高度
5星 · 资源好评率100%
您可以使用JavaScript来获取页面滚动条的高度。以下是一种常见的方法:
```javascript
var scrollHeight = Math.max(
document.body.scrollHeight,
document.documentElement.scrollHeight,
document.body.offsetHeight,
document.documentElement.offsetHeight,
document.body.clientHeight,
document.documentElement.clientHeight
);
console.log("滚动条高度:" + scrollHeight);
```
这段代码将返回滚动条的高度,并使用`console.log`将其输出到控制台。您可以根据需要进行进一步处理或使用该值。
阅读全文