如何使用 JavaScript(和 jquery)检测一堆相同 div 类中的 div 溢出?
我有 31 个 div 具有相同的类“.cal”。有没有办法检测每个div,如果一个(或多个其他)div确实溢出,浏览器会自动添加一个html内容提醒用户该div溢出了?
我知道我应该检查 clientHeight
I have 31 div with the same class ".cal". Is there any way to detect each div and if one (or many other) div do have overflow, the browser automatically add a html content remind users that this div is overflowed?
I know I should check clientHeight
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 jquery:
编辑 @JoJo 向我解释了我从你的描述中错过的内容。因此,只需将内部包装器放入
.cal
div 中,然后获取包装器的高度和宽度即可。如果内部包装器大于您的.cal
那么该块就会溢出。 jsfiddle 上的概念证明Using jquery:
EDIT @JoJo explained me what I’ve missed from your description. So just put an inner wrapper into your
.cal
div and get height and width of the wrapper instead. If inner wrapper is larger than your.cal
then the block is overflown. Proof of concept on jsfiddle我不了解 jQuery,所以这里是原型解决方案。我确信转换为 jQuery 很容易。这个想法是检查内容的完整高度。如果超过了裁剪的高度,则被视为溢出。在这种情况下,我们添加一个“overflowError”类。也许这个类将通过 CSS 显示“显示更多”按钮。
I don't know jQuery, so here is the Prototype solution. I'm sure it's easy to convert to jQuery. The idea is to check the full height of the contents. If it exceeds the clipped height, then it is considered overflown. We add a "overflowError" class in this case. Perhaps this class will reveal the "show more" button via CSS.