更多"Try it Yourself"下面的例子。
定义和用法
高度属性返回用户屏幕的总高度,以像素为单位。
提示:使用宽度属性来获取用户屏幕的总宽度。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
height | 是 | 是 | 是 | 是 | 是 |
句法
screen.height
技术细节
返回值: | 一个数字,表示用户屏幕的总高度,以像素为单位 |
---|
更多示例
例
在一个示例中,所有屏幕属性:
var txt = "";
txt += "<p>Total width/height: " + screen.width + "*" +
screen.height + "</p>";
txt += "<p>Available width/height: " +
screen.availWidth + "*" + screen.availHeight + "</p>";
txt += "<p>Color
depth: " + screen.colorDepth + "</p>";
txt += "<p>Color resolution: " +
screen.pixelDepth + "</p>";
试一试» <屏幕对象