码迷,mamicode.com
首页 > 其他好文 > 详细

获取滚动条ScrollBar宽度

时间:2016-06-15 23:46:35      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:

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宽度

标签:

原文地址:http://www.cnblogs.com/zzsdream/p/5589306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!