Home > Article > Web Front-end > How to Accurately Calculate Document Height in JavaScript Across Browsers?
Calculating Document Height in JavaScript: Resolving Compatibility Issues
Determining the height of a document is crucial for various scenarios, such as positioning elements absolutely. However, certain documents pose challenges, resulting in discrepancies or incorrect values when using standard methods.
Two problematic cases are Fandango and Paperback Swap:
The reason for these inconsistencies lies in the fact that different browsers calculate document size differently. To address this, it is necessary to employ the following formula:
var body = document.body, html = document.documentElement; var height = Math.max( body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight );
This approach ensures that the highest value for height is obtained, irrespective of the browser being used.
It is important to note that testing the document's height before it is fully loaded will always result in a value of 0. Additionally, any subsequent changes to the document or window resizing may necessitate recalculating the height. To handle such scenarios, utilize the onload or document ready events.
The above is the detailed content of How to Accurately Calculate Document Height in JavaScript Across Browsers?. For more information, please follow other related articles on the PHP Chinese website!