availHeight只讀屬性返回屏幕上可用于應(yīng)用程序窗口的區(qū)域的高度。
應(yīng)用程序窗口的區(qū)域是除任務(wù)欄以外的整個屏幕。
screen.availHeight
var x = "Available Height: " + screen.availHeight;測試看看?/?
所有瀏覽器完全支持availHeight屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
availHeight | 是 | 是 | 是 | 是 | 是 |
返回值: | 一個數(shù)字,表示用戶屏幕的高度,以像素為單位 |
---|
此示例顯示所有屏幕屬性:
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屬性