网页可见区域宽:document.body.clientWidth
网页可见区域高:document.body.clientHeight
网页可见区域宽:document.body.offsetWidth (包括边线的宽)
网页可见区域高:document.body.offsetHeight (包括边线的宽)
网页正文全文宽:document.body.scrollWidth
网页正文全文高:document.body.scrollHeight
网页被卷去的高:document.body.scrollTop
网页被卷去的左:document.body.scrollLeft
网页正文部分上:window.screenTop
网页正文部分左:window.screenLeft
屏幕分辨率的高:window.screen.height
屏幕分辨率的宽:window.screen.width
屏幕可用工作区高度:window.screen.availHeight
屏幕可用工作区宽度:window.screen.availWidth
document.write("<br>网页可见区域宽:");
document.write(document.body.clientWidth);
document.write("<br>网页可见区域高:");
document.write(document.body.clientHeight);
document.write("<br>网页可见区域宽:");
document.write(document.body.offsetWidth);// (包括边线的宽)
document.write("<br>网页可见区域高:");
document.write(document.body.offsetHeight);// (包括边线的宽)
document.write("<br>网页正文全文宽:");
document.write(document.body.scrollWidth);
document.write("<br>网页正文全文高:");
document.write(document.body.scrollHeight);
document.write("<br>网页被卷去的高:");
document.write(document.body.scrollTop);
document.write("<br>网页被卷去的左:");
document.write(document.body.scrollLeft);
document.write("<br>网页正文部分上:");
document.write(window.screenTop);
document.write("<br>网页正文部分左:");
document.write(window.screenLeft);
document.write("<br>屏幕分辨率的高:");
document.write(window.screen.height);
document.write("<br>屏幕分辨率的宽:");
document.write(window.screen.width);
document.write("<br>屏幕可用工作区高度:");
document.write(window.screen.availHeight);
document.write("<br>屏幕可用工作区宽度:");
document.write(window.screen.availWidth);