這篇文章帶給大家的內容是關於html實現視窗大小變化時頁面刷新(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no"> <title>Document</title> <script> //窗口大小变化时候,进行刷新页面操作,防止样式混乱 var x=window.innerWidth; function resizeFresh(){ if(x!=window.innerWidth) location.reload(); } </script> </head> <body onresize="resizeFresh()"> <div style="min-width:800px; height: 400px; background-color: brown;"> </div> 刷新页面 </body> </html>
相關推薦:
html thead標籤的作用是什麼? html thead標籤屬性介紹
以上是html實現視窗大小變化時頁面刷新(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!