更多"Try it Yourself"下面的例子。
定義和用法
該availWidth屬性返回用戶的屏幕的寬度,以像素為單位,減去界面功能,如Windows任務欄上。
提示:要得到屏幕(不包括Windows任務欄的高度),使用availHeight屬性。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
availWidth | 是 | 是 | 是 | 是 | 是 |
句法
screen.availWidth
技術細節
返回值: | 一個數字,表示用戶的屏幕的寬度,以像素為單位 |
---|
更多示例
例
在一個示例中,所有屏幕屬性:
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>";
試一試» <屏幕對象