div 元素中的溢出检测
div 元素中的垂直文本溢出是一种常见的烦恼,可能很难检测。以下是如何准确确定是否存在此类溢出的方法:
确定溢出
要检查垂直文本溢出,请比较 clientHeight(div 内内容区域的高度)与滚动高度(内容的高度,包括任何溢出)。如果scrollHeight超过clientHeight,则存在溢出。使用以下代码:
function GetContainerSize() { var container = document.getElementById("tempDiv"); var message = "The width of the contents with padding: " + container.scrollWidth + "px.\n"; message += "The height of the contents with padding: " + container.scrollHeight + "px.\n"; alert(message); }
运行此函数以显示scrollHeight和clientHeight值。如果scrollHeight较大,则会出现垂直溢出。
延伸阅读
更深入的信息,请参考:http://help.dottoro.com/ ljbixkkn.php
以上是如何检测 Div 元素中的垂直文本溢出?的详细内容。更多信息请关注PHP中文网其他相关文章!