How can I get the browser's scrollbar sizes?

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

    I found a simple solution that works for elements inside of the page, instead of the page itself: $('#element')[0].offsetHeight - $('#element')[0].clientHeight

    This returns the height of the x-axis scrollbar.

提交回复
热议问题