本文概要
- JavaScript的屏幕对象的属性
导航器对象是窗口属性,因此它可以通过访问:
window.screen
【JavaScript的屏幕对象】要么,
screen
JavaScript的屏幕对象的属性有迹象表明,返回浏览器的信息屏幕上对象的许多特性。
没有。 | 属性 | 描述 |
---|---|---|
1 | width | 返回屏幕的宽度 |
2 | height | 返回屏幕的高度 |
3 | availWidth | 返回可用宽度 |
4 | availHeight | 返回可用高度 |
5 | colorDepth | 返回颜色深度 |
6 | pixelDepth | 返回像素深度。 |
<
script>
document.writeln("<
br/>screen.width: "+screen.width);
document.writeln("<
br/>screen.height: "+screen.height);
document.writeln("<
br/>screen.availWidth: "+screen.availWidth);
document.writeln("<
br/>screen.availHeight: "+screen.availHeight);
document.writeln("<
br/>screen.colorDepth: "+screen.colorDepth);
document.writeln("<
br/>screen.pixelDepth: "+screen.pixelDepth);
<
/script>
screen.width: 1366
screen.height: 768
screen.availWidth: 1366
screen.availHeight: 728
screen.colorDepth: 24
screen.pixelDepth: 24
推荐阅读
- JavaScript的文档对象(文档对象模型)
- JavaScript的历史对象
- JavaScript的窗口对象
- JavaScript的浏览器对象模型
- JavaScript的布尔
- JavaScript的Number对象
- JavaScript数组
- JavaScript的全局变量
- JavaScript变量