最新的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>";
試一試»

<屏幕對象