get document body height
1. 높이 요소 중 최대값 구하기
const body = document.body;
const html = document.documentElement;
const height = Math.max(
body.scrollHeight,
body.offsetHeight,
html.clientHeight,
html.scrollHeight,
html.offsetHeight
);
console.log(height);
참조
[stakoverflow]: https://stackoverflow.com/questions/1145850/how-to-get-height-of-entire-document-with-javascript
728x90
'Programing Language > Javascript' 카테고리의 다른 글
[Javascript] console.log() JSON pretty print (0) | 2023.06.12 |
---|---|
[Javascript] getElementById vs querySelector 비교 (0) | 2023.04.07 |
[Javascript] 문자열 자르기 (slice, substr, substring) (0) | 2023.03.22 |
[Javascript] fetch 파일 업로드 예제 (0) | 2023.02.21 |
[Javascript] A form label must be associated with a control. (0) | 2022.11.01 |
댓글