決定瀏覽器捲軸尺寸
我們如何決定滾動條在水平或垂直方向上的大小JavaScript?
解決方案:
Alexandre Gomes 部落格提出了JavaScript 解決方案,引用如下:
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); }
透過建立和比較使用和不使用滾動條的隱藏元素的寬度或高度,該函數精確確定水平滾動條的寬度或垂直滾動條的高度滾動條。
以上是如何使用 JavaScript 確定瀏覽器滾動條尺寸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!