How can I get the browser's scrollbar sizes?

后端 未结 23 2238
孤街浪徒
孤街浪徒 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:34

    if you are looking for a simple operation, just mix plain dom js and jquery,

    var swidth=(window.innerWidth-$(window).width());
    

    returns the size of current page scrollbar. (if it is visible or else will return 0)

提交回复
热议问题