原文:JS中關於clientWidth offsetWidth scrollWidth 等的含義

網頁可見區域寬: document.body.clientWidth 網頁可見區域高: document.body.clientHeight 網頁可見區域寬: document.body.offsetWidth 包括邊線的寬 網頁可見區域高: document.body.offsetHeight 包括邊線的寬 網頁正文全文寬: document.body.scrollWidth 網頁正文全文高: ...

2012-01-16 22:09 2 76266 推薦指數:

查看詳情

關於clientWidth scrollWidth offsetWidth的理解

clientWidth:元素可見區域的寬度 clientWidth=padding+width-滾動條 scrollWidth:元素實際內容的寬度 scrollWidth=padding+width(元素實際的內容) offsetWidth:元素可見區域的寬度+邊框 ...

Fri Jun 17 06:41:00 CST 2016 5 2126
scrollWidth, clientWidth, offsetWidth的區別

轉自他的博客:https://www.cnblogs.com/kongxianghai/p/4192032.html 通過一個demo測試這三個屬性的差別。 說明: scrollWidth:對象的實際內容的寬度,不包邊線寬度,會隨對象內容超過可視區后而變大。 clientWidth:對象 ...

Mon Dec 11 18:06:00 CST 2017 0 8827
 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM