Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
306 views
in Technique[技术] by (71.8m points)

javascript - 如何使用JavaScript获取整个文档的高度?(How to get height of entire document with JavaScript?)

Some documents I can't get the height of the document (to position something absolutely at the very bottom).

(有些文档我无法获取文档的高度(将某些内容绝对定位在最底部)。)

Additionally, a padding-bottom on seems to do nothing on these pages, but do on the pages where height will return.

(此外,在这些页面上的底部填充似乎没有任何作用,但在高度会返回的页面上却没有作用。)

Case(s) in point:

(案例:)

http://fandango.com

(http://fandango.com)


http://paperbackswap.com

(http://paperbackswap.com)

On Fandango

(在Fandango)


jQuery's $(document).height();

(jQuery的$(document).height();)

returns correct value

(返回正确的值)


document.height returns 0

(document.height返回0)


document.body.scrollHeight returns 0

(document.body.scrollHeight返回0)

On Paperback Swap:

(在平装交换上:)


jQuery's $(document).height();

(jQuery的$(document).height();)

TypeError: $(document) is null

(TypeError: $(document)为null)


document.height returns an incorrect value

(document.height返回不正确的值)


document.body.scrollHeight returns an incorrect value

(document.body.scrollHeight返回不正确的值)

Note: I have browser level permissions, if there is some trick there.

(注意:如果有一些窍门,我具有浏览器级别的权限。)

  ask by Nic translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Document sizes are a browser compatibility nightmare because, although all browsers expose clientHeight and scrollHeight properties, they don't all agree how the values are calculated.

(文档大小是浏览器兼容性的噩梦,因为尽管所有浏览器都公开了clientHeight和scrollHeight属性,但是它们并不都同意如何计算值。)

There used to be a complex best-practice formula around for how you tested for correct height/width.

(关于如何测试正确的高度/宽度,曾经有一个复杂的最佳实践公式。)

This involved using document.documentElement properties if available or falling back on document properties and so on.

(这涉及使用document.documentElement属性(如果可用)或依靠文档属性等。)

The simplest way to get correct height is to get all height values found on document, or documentElement, and use the highest one.

(获取正确高度的最简单方法是获取文档或documentElement上找到的所有高度值,并使用最高的值。)

This is basically what jQuery does:

(基本上,这就是jQuery的作用:)

var body = document.body,
    html = document.documentElement;

var height = Math.max( body.scrollHeight, body.offsetHeight, 
                       html.clientHeight, html.scrollHeight, html.offsetHeight );

A quick test with Firebug + jQuery bookmarklet returns the correct height for both cited pages, and so does the code example.

(使用Firebug + jQuery小书签进行的快速测试将为两个引用的页面返回正确的高度,代码示例也是如此。)

Note that testing the height of the document before the document is ready will always result in a 0. Also, if you load more stuff in, or the user resizes the window, you may need to re-test.

(请注意,在文档准备就绪之前测试文档的高度将始终为0。此外,如果您在其中加载了更多内容,或者用户调整了窗口的大小,则可能需要重新测试。)

Use onload or a document ready event if you need this at load time, otherwise just test whenever you need the number.

(如果需要在加载时使用onload文档就绪事件,请在需要该数字时进行测试。)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...