原生js隐藏和显示滚动条


    //判断滚动条是否存在
    function hasScrollbar() {
        return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight);
    }
    function hide_scroll(){
        $("html").height($(window).height()).css({
            "overflow-y": "hidden"
        });//弹出框时隐藏滚动条
        $("html").css("margin-right",17);//隐藏滚动条时防止页面偏题
    }
    function show_scroll(){
        $("html").height($(window).height()).css({
            "overflow-y": "auto"
        });//弹出框时隐藏滚动条
        $("html").css("margin-right",0);//隐藏滚动条时防止页面偏题
    }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM