<body> <script> // 监听窗口改变尺寸事件 window.onresize = function() { var root = document.documentElement; console.log('窗口改变尺寸了',root.clientWidth,root.clientHeight); } </script></body>