27.屏幕的宽高.html 576 B

1234567891011121314151617
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. // document.body.scrollTop || document.documentElement.scrollTop
  11. var screenWidth = document.body.clientWidth || document.documentElement.clientWidth;
  12. var screenHeight = document.body.clientHeight || document.documentElement.clientHeight;
  13. console.log(screenHeight,'高度');
  14. console.log(screenWidth,'宽度');
  15. </script>
  16. </body>
  17. </html>