gpt4 book ai didi

javascript - 使用 jQuery 计算溢出文本的宽度

转载 作者:太空宇宙 更新时间:2023-11-03 23:46:18 26 4
gpt4 key购买 nike

我有一些 div,它们在具有固定宽度的容器内包含不同数量的文本。为了阻止文本溢出容器外,我使用了以下 CSS:

overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;

有什么方法可以计算出文本未被 chop 时的宽度吗?使用以下代码仅提供 trim 后的宽度。

$('.boxText').width();

澄清一下 - 我说的是宽度。 不是字符长度。

最佳答案

var divWidthBefore = $('.boxText').width();
$('.boxText').css('width','auto');
var divWidth = $('.boxText').width();
$('.boxText').width(divWidthBefore);

关于javascript - 使用 jQuery 计算溢出文本的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21460058/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com