JS監聽瀏覽器寬高


 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <title>監聽瀏覽器的寬高變化</title>
 5     </head>
 6     <body style="width: 1440px;height: 1000px;">
 7         <div id="div"></div>
 8         <script type="text/javascript">
 9             window.onresize = ()=>{
10                 console.log(window.innerWidth,window.innerHeight)
11             }
12         </script>
13     </body>
14 </html>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM