How can I get the browser's scrollbar sizes?

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

    window.scrollBarWidth = function() {
      document.body.style.overflow = 'hidden'; 
      var width = document.body.clientWidth;
      document.body.style.overflow = 'scroll'; 
      width -= document.body.clientWidth; 
      if(!width) width = document.body.offsetWidth - document.body.clientWidth;
      document.body.style.overflow = ''; 
      return width; 
    } 
    

提交回复
热议问题