最新的Web开发教程
 

Screen height Property

<屏幕对象

让您的屏幕的总高度:

var x = "Total Height: " + screen.height;

x的结果将是:

试一试»

更多"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>";
试一试»

<屏幕对象