Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表格,单元格宽度固定,样式为“文本溢出:省略号”。在每个单元格中,我都有样式“white-space:nowrap;”的跨度。
我的问题是“如何检查跨度是否被包裹”和“如何在 td 内获得包裹跨度的全部所需宽度”?
使用 Jquery,您可以使用以下方法获取元素的宽度.outerWidth():
.outerWidth()
$(element).outerWidth();
JS中的等价物是:
element.offsetWidth