Screen availWidth 属性

定义和用法
availWidth 属性声明了显示浏览器的屏幕的可用宽度,以像素计。在 Windows 这样的操作系统中,这个可用高度不包括分配给半永久特性(如屏幕底部的任务栏)的垂直空间。
语法
screen.availWidth
浏览器支持
所有主要浏览器都支持 availWidth 属性
实例
返回屏幕的可用宽度:
<script>
document.write("可用宽度: " + screen.availWidth);
</script>
更多实例
本例包含了所有screen属性
<h3>你的屏幕:</h3>
<script>
document.write("总宽度/高度: ");
document.write(screen.width + "*" + screen.height);
document.write("<br>");
document.write("可以宽度/高度: ");
document.write(screen.availWidth + "*" + screen.availHeight);
document.write("<br>");
document.write("颜色深度: ");
document.write(screen.colorDepth);
document.write("<br>");
document.write("颜色分辨率: ");
document.write(screen.pixelDepth);
</script>
