Javascript:如何捕获网站内容的高度?

发布于 2024-10-24 12:05:02 字数 443 浏览 3 评论 0原文

我正在尝试找到正确的 JavaScript 代码来捕获网页上所有内容的高度。

我查看了 document.height、window.screen.height、document.body.offsetHeight、bodyScroll、clientArea.style.height、bodyHeight 和 document.documentElement.clientHeight。

我正在使用 FireBug 来测试这些值,但当我调整窗口大小时,所有值(window.screen.height 除外)似乎都会发生变化,因此它们并未实际报告内容的实际高度。

现在,即使我更改为不同尺寸的不同页面,window.screen.height 也永远不会改变。

如何确定内容的总高度?基本上我需要知道滚动条知道什么。滚动条知道每页滚动多少以及滚动多少才能到达内容末尾。

任何帮助将不胜感激。

I am trying to find the correct Javascript code to capture the height of all the content on a webpage.

I have looked at document.height, window.screen.height, document.body.offsetHeight, bodyScroll, clientArea.style.height, bodyHeight, and document.documentElement.clientHeight.

I am using FireBug to test these values but all (except for the window.screen.height) seem to change as I resize my window, so they are not actual reporting the actual height of the content.

Now, the window.screen.height never changes, even if I change to different pages with different sizes.

How can I determine the total height of the content? Basically I need to know what the scroll bar knows. Th scrollbar knows how much to scroll per page and how much to scroll to reach the end of the content.

Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

白云不回头 2024-10-31 12:05:02

试试这个:

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" ></script>
<script type="text/javascript">

$(document).ready(function(){

document_height = $(document).height();
document_width = $(document).width();
window_height = $(window).height();
window_width = $(window).width();

alert(document_height + ' x ' + document_width);

alert(window_height + ' x ' + window_width);
});

</script>

Try this:

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" ></script>
<script type="text/javascript">

$(document).ready(function(){

document_height = $(document).height();
document_width = $(document).width();
window_height = $(window).height();
window_width = $(window).width();

alert(document_height + ' x ' + document_width);

alert(window_height + ' x ' + window_width);
});

</script>
挽清梦 2024-10-31 12:05:02

不同的浏览器以不同的方式报告窗口的大小和文档的大小。您可以使用库来解决跨浏览器问题,如 jQuery 中的代码:

$(document).height();

没有库,我使用此代码来获取尺寸:

var b, h, info;
b = document.body;
h = b.parentNode;
if (window.opera) {
  info = { winWidth: b.clientWidth, winHeight: b.clientHeight, pageWidth: h.clientWidth, pageHeight: h.clientHeight };
} else {
  info = { winWidth: h.clientWidth, winHeight: h.clientHeight, pageWidth: b.clientWidth, pageHeight: b.clientHeight };
}

Different browers report the size of the window and size of the document in different ways. You can use a library to get around the cross browser problems, like this code in jQuery:

$(document).height();

Without a library, I have used this code to get the dimensions:

var b, h, info;
b = document.body;
h = b.parentNode;
if (window.opera) {
  info = { winWidth: b.clientWidth, winHeight: b.clientHeight, pageWidth: h.clientWidth, pageHeight: h.clientHeight };
} else {
  info = { winWidth: h.clientWidth, winHeight: h.clientHeight, pageWidth: b.clientWidth, pageHeight: b.clientHeight };
}
愚人国度 2024-10-31 12:05:02
var height = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
var height = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文