获取滚动条ScrollBar宽度

Posted 雪松

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取滚动条ScrollBar宽度相关的知识,希望对你有一定的参考价值。

function getScrollBarWidth () {
var inner = document.createElement(‘p‘);
inner.style.width = "100%";
inner.style.height = "200px";

var outer = document.createElement(‘div‘);
outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
outer.style.visibility = "hidden";
outer.style.width = "200px";
outer.style.height = "150px";
outer.style.overflow = "hidden";
outer.appendChild (inner);

document.body.appendChild (outer);
var w1 = inner.offsetWidth;
outer.style.overflow = ‘scroll‘;
var w2 = inner.offsetWidth;
if (w1 == w2) w2 = outer.clientWidth;

document.body.removeChild (outer);

return (w1 - w2);
};

以上是关于获取滚动条ScrollBar宽度的主要内容,如果未能解决你的问题,请参考以下文章

如何解决滚动条scrollbar出现造成的页面宽度被挤压的问题?

让页面滚动条不增大页面宽度

火狐浏览器隐藏了滚动条,但是就不可以滚动了,有没有啥解决办法?

如何设置滚动条的宽度及颜色?

滚动条样式的修改

滚动条的设置属性