最新的Web開發教程
 

Screen availHeight Property

<屏幕對象

讓您的屏幕可用高度:

var x = "Available Height: " + screen.availHeight;

x的結果將是:

試一試»

更多"Try it Yourself"下面的例子。


定義和用法

該availHeight屬性返回用戶的屏幕的高度,以像素為單位,減去界面功能,如Windows任務欄上。

提示:要得到屏幕(不包括Windows任務欄)的寬度,使用availWidth屬性。


瀏覽器支持

屬性
availHeight

句法

screen.availHeight

技術細節

返回值: 一個數字,表示用戶屏幕的高度,以像素為單位

例子

更多示例

在一個示例中,所有屏幕屬性:

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

<屏幕對象