HTML DOM availWidth 属性
定义和用法
availWidth 属性声明了显示浏览器的屏幕的可用宽度,以像素计。在 Windows 这样的操作系统中,这个可用高度不包括分配给半永久特性(如屏幕底部的任务栏)的垂直空间。
语法
- screen.availWidth
实例
- <html>
- <body>
- <script type="text/javascript">
- document.write("<p>Available Width: ")
- document.write(screen.availWidth + "</p>")
- </script>
- </body>
- </html>