确定HTML元素的内容是否溢出

确定HTML元素的内容是否溢出,第1张

确定HTML元素的内容是否溢出

通常,您可以比较

client[Height|Width]
scroll[Height|Width]
以便检测到此情况…
…但是,当可见溢出时,这些值将相同。因此,检测程序必须考虑到这一点:

// Determines if the passed element is overflowing its bounds,// either vertically or horizontally.// Will temporarily modify the "overflow" style to detect this// if necessary.function checkOverflow(el){   var curOverflow = el.style.overflow;   if ( !curOverflow || curOverflow === "visible" )      el.style.overflow = "hidden";   var isOverflowing = el.clientWidth < el.scrollWidth       || el.clientHeight < el.scrollHeight;   el.style.overflow = curOverflow;   return isOverflowing;}

在FF3,FF40.0.2,IE6,Chrome 0.2.149.30中进行了测试。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5022072.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存