Screen availWidth屬性用於返回用戶屏幕的寬度(以像素為單位)。 Screen availWidth屬性返回的值不包括Windows函數欄之類的接口函數。
用法:
screen.availWidth
以下示例程序旨在說明屏幕的availWidth屬性:
獲取用戶屏幕的寬度。
輸入:
<!DOCTYPE html>
<html>
<head>
<title>
Screen availWidth property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Screen availWidth property</h2>
<p>
For returning the screen width,
double click the "Screen Width" button:
</p>
<button ondblclick="screen_width()">
Screen Width
</button>
<p id="width"></p>
<script>
function screen_width() {
var w = "Screen width:" + screen.availWidth + "px";
document.getElementById("width").innerHTML = w;
}
</script>
</body>
</html>
輸出:
單擊按鈕後
支持的瀏覽器:屏幕availWidth支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Screen availHeight用法及代碼示例
- HTML Screen width用法及代碼示例
- HTML Screen height用法及代碼示例
- HTML Screen pixelDepth用法及代碼示例
- HTML Screen colorDepth用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | Screen availWidth Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。