How can I get the browser's scrollbar sizes?

后端 未结 23 2237
孤街浪徒
孤街浪徒 2020-11-22 06:08

How can I determine the height of a horizontal scrollbar, or the width of a vertical one, in JavaScript?

23条回答
  •  死守一世寂寞
    2020-11-22 06:13

    Already coded in my library so here it is:

    var vScrollWidth = window.screen.width - window.document.documentElement.clientWidth;
    

    I should mention that jQuery $(window).width() can also be used instead of window.document.documentElement.clientWidth.

    It doesn't work if you open developer tools in firefox on the right but it overcomes it if the devs window is opened at bottom!

    window.screen is supported quirksmode.org!

    Have fun!

提交回复
热议问题