js 页面事件

 <script>
        // // 页面加载的时候触发
        // window.addEventListener("load", function () {

        // })
        //   页面滚动条
        x.style.display = "none";
        window.addEventListener("scroll", function () {
            if (window.pageYOffset > 70) {
                x.style.display = "block";
            } else {
                x.style.display = "none";
            };
        })


        // 页面尺寸发生变化触发事件
        window.addEventListener("resize", function () {
            console.log(window.innerHeight, window.innerWidth);
        });
    </script>

js 页面事件

上一篇:String.format(String format,Object... args)的用法


下一篇:jsp自定义标签分析