浏览器窗口在 HTML 中进行调整大小时执行脚本?


当网页浏览器窗口调整大小时,onresize 属性会触发。

示例

你可以尝试运行以下代码来实现 onresize 属性 −

<!DOCTYPE html>
<html>
   <body onresize = "display()">
      <p>Resize the window to trigger event.</p>
      <script>
         function display() {
            alert("Web browser window resized!");
         }
      </script>
   </body>
</html>

更新于: 2020 年 5 月 30 日

228 次浏览

开启你的 职业生涯

完成课程后获得认证

开始吧
广告