标签: javascript html css
我有一个固定宽度为单元格的表格,其格式为“text-overflow:ellipsis”。在每个细胞中我都有 风格“white-space:nowrap;”。
我的问题是“如何检查跨度是否被包裹”和“必须在td内获得包裹跨度的全部所需宽度”?
答案 0 :(得分:1)
使用Jquery,您可以使用.outerWidth():
.outerWidth()
$(element).outerWidth();
JS中的等价物是:
element.offsetWidth