Screen availHeight 属性

JavaScript Screen 对象

availHeight只读属性返回屏幕上可用于应用程序窗口的区域的高度。

应用程序窗口的区域是除任务栏以外的整个屏幕。

语法:

screen.availHeight
var x = "Available Height: " + screen.availHeight;
测试看看‹/›

浏览器兼容性

所有浏览器完全支持availHeight属性:

属性
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>";
document.write(txt);
测试看看‹/›

相关参考

Screen参考:screen.availWidth属性

Screen参考:screen.colorDepth属性

Screen参考:screen.height属性

Screen参考:screen.width属性

Screen参考:screen.pixelDepth属性

JavaScript Screen 对象