屏幕高度属性用于返回用户屏幕的总高度。它以像素为单位返回屏幕的总高度。
用法:
screen.height
以下示例程序旨在说明屏幕高度属性:
检查用户屏幕的总高度。
<!DOCTYPE html>
<html>
<head>
<title>
Screen height Property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Screen height Property</h2>
<p>
For checking the screen's total height,
double click the "Check Height" button:
</p>
<button ondblclick="check_height()">
Check Height
</button>
<p id="height"></p>
<script>
function check_height() {
var h =
"Total Screen Height In Pixels:"
+ screen.height;
document.getElementById("height").innerHTML = h;
}
</script>
</body>
</html>
输出:
单击按钮后
支持的浏览器:屏幕高度支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Screen pixelDepth用法及代码示例
- HTML Screen width用法及代码示例
- HTML Screen colorDepth用法及代码示例
- HTML Screen availHeight用法及代码示例
- HTML Screen availWidth用法及代码示例
- HTML IFrame height用法及代码示例
- HTML Object Height用法及代码示例
- HTML Video height用法及代码示例
- HTML embed height用法及代码示例
- HTML Style height用法及代码示例
- HTML input image height用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | Screen height Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。