调整Web浏览器窗口的大小时,将触发onresize属性。
您可以尝试运行以下代码以实现onresize属性-
<!DOCTYPE html>
<html>
   <body onresize = "display()">
      <p>Resize the window to trigger event.</p>
      <script>
         function display() {
            alert("Web浏览器窗口已调整大小!");
         }
      </script>
   </body>
</html>