码迷,mamicode.com
首页 > Web开发 > 详细

JS 浏览器BOM-->onresize方法

时间:2020-04-16 22:19:09      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:charset   script   span   html   不同   log   ons   back   rem   

1.定义和用法

  当浏览器发生法缩放的时候就会反复触发resize事件

  语法:

    window.onresize=function(){SomeJavaScriptCode};

    参数:SomeJavaScriptCode:触发的事件

  举例:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>js_excise</title>
        <script src="./js/js_excise.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body style="height: 187.5rem;">
        <script type="text/javascript">
            window.onresize=function(){
                //打印滚动窗口宽度和高度
                var w = document.documentElement.clientWidth || document.body.clientHeight || window.innerWidth //写三个是因为为了兼容不同的浏览器
                var h = document.documentElement.clientHeight || document.body.clientWidth || window.innerHeight
                console.log(w,h)
            }
        </script>
    </body>
</html>

  输出:

技术图片

JS 浏览器BOM-->onresize方法

标签:charset   script   span   html   不同   log   ons   back   rem   

原文地址:https://www.cnblogs.com/abner-pan/p/12716123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!