gpt4 book ai didi

javascript - 如何将第十一个字符替换为 "..."

转载 作者:行者123 更新时间:2023-11-28 19:30:37 26 4
gpt4 key购买 nike

我的 div 中有一个很长的文本。我希望它只显示十个字符,然后将其余内容替换为 ...

<div id="name">wahahahahahahahahahahaha</div>

在 Jquery 中

$("div#name").text(function(index, currentText) {
return currentText.substr(0, 10);
});

这个 jQuery 起作用了,长文本停止到第十。

最佳答案

添加条件以检查文本是否超过 10 个字符。

$("div#name").text(function(index, currentText) {   
var newText = currentText.substr(0, 10);
if(currentText.length > 10)
newText += "...";

return newText ;
});

关于javascript - 如何将第十一个字符替换为 "...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26881814/

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