我见过this question但感觉必须有一个“更干净”的jQuery方法来做到这一点。我甚至不确定这是否真的适用于所有场景。有没有办法让jQuery在不比较维度的情况下确定容器是否有溢出?
为了澄清,有没有一种方法来测试CSS属性overflow: hidden
是否已经启动并隐藏内容?
答案 0 :(得分:12)
$.fn.hasOverflow = function() {
var $this = $(this);
var $children = $this.find('*');
var len = $children.length;
if (len) {
var maxWidth = 0;
var maxHeight = 0
$children.map(function(){
maxWidth = Math.max(maxWidth, $(this).outerWidth(true));
maxHeight = Math.max(maxHeight, $(this).outerHeight(true));
});
return maxWidth > $this.width() || maxHeight > $this.height();
}
return false;
};
示例:
var $content = $('#content').children().wrapAll('<div>');
while($content.hasOverflow()){
var size = parseFloat($content.css('font-size'), 10);
size -= 1;
$content.css('font-size', size + 'px');
}
答案 1 :(得分:5)
您可以更改css属性以满足您的需求。
$.fn.hasOverflow = function() {
$(this).css({ overflow: "auto", display: "table" });
var h1 = $(this).outerHeight();
$(this).css({ overflow: "hidden", display: "block" });
var h2 = $(this).outerHeight();
return (h1 > h2) ? true : false;
};
答案 2 :(得分:1)
没有干净的方法。你可以使它成为两个包装器,外包装器有overflow: hidden
,并比较两个包装器的尺寸,但你可能做的任何事情都会变成hacky。如果功能确实是必要的,那么你将不得不忍受黑客攻击。
答案 3 :(得分:0)
我发现一个简单的解决方案是检测scrollWidth
的{{1}}:
parent()
var totalWidth = $(this).parent()[0].scrollWidth;
索引是指父项的“根节点”,从那里获取属性。
答案 4 :(得分:0)
存在另一种解决方案,(此示例测试高度是否溢出)它需要溢出容器为position:relative
:
<div id="overflowing-container" style="position:relative">
<div class="children"></div>
<div class="children"></div>
<div class="children"></div>
</div>
var last = $('.children:last'), container=$('#overflowing-container')
lastOffsetHeight = container.scrollTop() + last.outerHeight(true) + last.position().top;
if (last[0] && lastOffsetHeight > container[0].getBoundingClientRect().height) {
console.log("thisContainerOverflows")
}