網(wǎng)頁元素
網(wǎng)頁可視大小
clientWidth
①和clientHeight
②
- 網(wǎng)頁大小 = 網(wǎng)頁內(nèi)容+padding,注意是
視覺面積
,不包括邊框和滾動條; - 只讀屬性,不能修改.
function getViewport(){
if (document.compatMode == "BackCompat"){ //兼容性判斷,判斷是否怪異模式
return {
width: document.body.clientWidth,
height: document.body.clientHeight
}
} else {
return {
width: document.documentElement.clientWidth,
height: document.documentElement.clientHeight
}
}
}
網(wǎng)頁可視大小(滾動條)
scrollWidth
③和scrollheight
④
- 包含滾動條內(nèi)容的視覺面積