检测 DIV 元素中的垂直溢出
确定 DIV 元素的垂直文本内容是否超出其边界对于维护界面完整性至关重要。要检测此溢出,建议比较元素的 rollHeight 和 clientHeight 属性。
实现:
考虑以下 HTML 和 CSS 代码:
<code class="html"><div id="tempDiv" class="rounded"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vel quam vestibulum orci blandit laoreet. </div></code>
<code class="css">div.rounded { background-color: #FFF; height: 123px; width: 200px; font-size: 11px; overflow: hidden; }</code>
要检测溢出,请将下面提供的 JavaScript 代码插入到页面中:
<code class="javascript">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); }</code>
执行此函数并出现警报时,比较scrollHeight和clientHeight值将指示是否文本溢出 DIV。
更多资源:
有关此主题的更多信息,请参阅以下 URL:
http://help.dottoro .com/ljbixkkn.php
以上是如何确定文本内容是否溢出 JavaScript 中的 DIV 元素?的详细内容。更多信息请关注PHP中文网其他相关文章!