How can I get the browser's scrollbar sizes?

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

    You can determine window scroll bar with document as below using jquery + javascript:

    var scrollbarWidth = ($(document).width() - window.innerWidth);
    console.info("Window Scroll Bar Width=" + scrollbarWidth );
    

提交回复
热议问题