js獲取視窗大小高度

2021-06-28 22:46:21 字數 585 閱讀 7059

document.body.clientwidth ==> body文件區域的寬度

document.body.clientheight ==> body文件區域的高度

document.body.offsetwidth==>

body文件區域的寬度(包括邊線)";

document.body.offsetheight==>body文件區域的高度

(包括邊線的高)

document.documentelement.clientwidth ==> 螢幕可視寬度

document.documentelement.clientheight ==> 螢幕可視高度

document.documentelement.scrollwidth ==> 螢幕總寬度(包括不可見的區域,即滾動條後的寬度)

document.documentelement.scrollheight==> 螢幕總高度(包括不可見的區域,即滾動條後的高度)

document.documentelement.scrolltop==> 滾動的高度

document.documentelement.scrollleft==> 滾動的寬度

js獲取視窗大小

常用 js 獲取瀏覽器視窗大小 獲取視窗寬度 if window.innerwidth winwidth window.innerwidth else if document.body document.body.clientwidth winwidth document.body.clientwi...

js獲取視窗大小

常用 js 獲取瀏覽器視窗大小 獲取視窗寬度 if window.innerwidth winwidth window.innerwidth else if document.body document.body.clientwidth winwidth document.body.clientwi...

獲取視窗大小

getclientrect 以視窗客戶區左上角為基準。getwindowrect 以螢幕左上角為基準。getwindowrect screentoclient getclientrect getclientrect clienttoscreen getwindowrect mapwindowpoin...