如何獲得瀏覽器的滾動條大小?如何確定JavaScript中水平滾動條的高度或垂直滾動條的寬度?
如何獲得瀏覽器的滾動條大???
縹緲止盈
2019-06-25 17:16:25
TA貢獻(xiàn)1815條經(jīng)驗(yàn) 獲得超10個贊
function getScrollBarWidth () { var $outer = $('<div>').css({visibility: 'hidden', width: 100, overflow: 'scroll'}).appendTo('body'), widthWithScroll = $('<div>').css({width: '100%'}).appendTo($outer).outerWidth(); $outer.remove(); return 100 - widthWithScroll;};
舉報(bào)