Disable browsers vertical and horizontal scrollbars

后端 未结 11 2378
一生所求
一生所求 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:43

    In case you also need support for Internet Explorer 6, just overflow the html

    $("html").css("overflow", "hidden");
    

    and

    $("html").css("overflow", "auto");
    

提交回复
热议问题