Thuộc tính HTML DOM scrollHeight trả về toàn bộ chiều cao (nội dung + phần đệm) của một phần tử tính bằng px trong tài liệu HTML.
Cú pháp
Sau đây là cú pháp -
element.scrollHeight
Ví dụ
Hãy để chúng tôi xem một ví dụ về thuộc tính scrollHeight -
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: #ff7f5094; height:100%; } p{ font-weight:700; font-size:1.2rem; height:80px; border:1px solid #fff; overflow:auto; width:250px; margin:20px auto; } .btn{ background:#0197F6; border:none; height:2rem; border-radius:2px; width:35%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } .show{ font-size:1.5rem; } </style> </head> <body> <h1>DOM scrollHeight/scrollWidth Property Demo</h1> <p>Hi!I'm a para element in HTML with some dummy text. Hi!I'm a para element in HTML with some dummy text. Hi!I'm a para element in HTML with some dummy text. Hi!I'm a para element in HTML with some dummy text.</p> <button onclick="getHW()" class="btn">Get paragraph height & width</button> <div class="show"></div> <script> function getHW() { var para = document.querySelector('p'); document.querySelector(".show").innerHTML="<div>Para Height = "+para.scrollHeight+" px</div><div>Para Width = "+ para.scrollWidth+" px</div>"; } </script> </body> </html>
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Nhấp vào nút “ Màu xanh lam ”Để hiển thị chiều rộng và chiều cao cuộn của đoạn văn -