课程
/前端开发
/JavaScript
/JavaScript进阶篇
这些数字都是代表什么呢?
2016-04-03
源自:JavaScript进阶篇 9-19
正在回答
IE7下使用document.documentElement.clientHeight和document.documentElement.clientWidth来取得窗口的高度和宽度。
IE7,IE8,IE9,firefox document.body.clientHeight和document.body.clientWidth获得窗口的高和宽。
也就是你浏览器显示的网页的宽高。
网页可见区域宽: document.body.clientWidth;网页可见区域高: document.body.clientHeight;
屏幕分辨率的高: window.screen.height;屏幕分辨率的宽: window.screen.width;
屏幕可用工作区高度: window.screen.availHeight;屏幕可用工作区宽度:window.screen.availWidth;
oldwan 提问者
举报
本课程从如何插入JS代码开始,带您进入网页动态交互世界
2 回答关于各种网页尺寸的意义
1 回答关于网页尺寸问题offsetHeight和scrollHeight
2 回答网页尺寸offsetHeight
3 回答onunload窗口关闭无效