JS浏览器对象-Screen对象

 

代码:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <meta charset="UTF-8">
 5 <title>uvi</title>
 6      <link rel="stylesheet" href="style.css" type="text/css">
 7 </head>
 8 <body>
 9    <script>
10       document.write("可用高度:"+screen.availHeight+",可用宽度:"+screen.availWidth);
11       document.write("高度:"+screen.height+",宽度:"+screen.width);
12    </script>
13    
14 </body>
15 </html>

 

posted @ 2016-08-10 13:49  UniqueColor  阅读(295)  评论(0编辑  收藏  举报