作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 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/
我是一名优秀的程序员,十分优秀!