Disable browsers vertical and horizontal scrollbars

后端 未结 11 2370
一生所求
一生所求 2020-11-28 02:41

Is it possible to disable the browsers vertical and horizontal scrollbars using jQuery or javascript?

11条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 03:46

    function reloadScrollBars() {
        document.documentElement.style.overflow = 'auto';  // firefox, chrome
        document.body.scroll = "yes"; // ie only
    }
    
    function unloadScrollBars() {
        document.documentElement.style.overflow = 'hidden';  // firefox, chrome
        document.body.scroll = "no"; // ie only
    }
    

提交回复
热议问题