当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM availWidth 属性
The availWidth property returns the width of the client's display screen - excluding the Windows Taskbar.
availWidth属性可返回客户显示屏幕的宽度 - 不包括windows的任务条
screen.availWidth |
<html> <body> <script type="text/javascript"> document.write("<p>Available Width: ") document.write(screen.availWidth + "</p>") </script> </body> </html> |
Detect details about the client's screen
探测出有关客户屏幕的信息