我有一个问题需要进行调试。我想问你,我怎么能找出整个标记的哪个元素导致滚动条。任何一种方法都可以。
我考虑过在开发人员工具中搜索overflow
,但这对我没有帮助。
有谁知道如何解决这个问题?
答案 0 :(得分:3)
您需要检查一些事情。首先,元素有溢出会产生滚动条:overflow: scroll
强制它们,overflow: auto
将在必要时显示它们。如果溢出是自动的,您可以根据它的实际高度检查它的滚动高度。
function isScroller(el) {
var isScrollableWidth, isScollableHeight, elStyle;
elStyle = window.getComputedStyle(el, null); // Note: IE9+
if (elStyle.overflow === 'scroll' ||
elStyle.overflowX === 'scroll' ||
elStyle.overflowY === 'scroll') {
return true;
}
if (elStyle.overflow === 'auto' ||
elStyle.overflowX === 'auto' ||
elStyle.overflowY === 'auto') {
if (el.scrollHeight > el.clientHeight) {
return true;
}
if (el.scrollWidth > el.clientWidth) {
return true;
}
}
return false;
}
var els = document.querySelectorAll('body *');
for (var i = 0, el; el = els[i]; i++) {
if (isScroller(el)) {
console.log(el);
}
}
你可以在这里看到它(打开你的控制台):http://jsfiddle.net/rgthree/zfyhby1j/
请注意,某些触控设备可能无法生成实际的"滚动条"滚动时除外。这不会检测到,但是,该元素能够滚动。