JavaScript 在 n 个字符后修剪

发布于 2024-12-20 07:07:13 字数 131 浏览 0 评论 0原文

我有一个动态显示名称的 HTML 页面。现在此名称 (FN LN) 最多可达 240 个字符。但在 UI 方面,我想在大约 50 个字符后修剪 FN/LN 并替换为...

我如何使用 Javascript/jQuery 来做到这一点

I have a HTML page which shows a Name dynamically. Now this name (FN LN) can be upto 240 charcaters. But at the UI side, I want to trim the FN/LN after about 50 characters and replace with ...

How can I do this using Javascript/jQuery

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

苏辞 2024-12-27 07:07:13
$("#FN, #LN").each (function () {
  if ($(this).text().length > 50)
    $(this).text($(this).text().substring(0,50) + '...');
});

这应该有效。

$("#FN, #LN").each (function () {
  if ($(this).text().length > 50)
    $(this).text($(this).text().substring(0,50) + '...');
});

This should work.

小女人ら 2024-12-27 07:07:13

就像这样简单的事情:

if (name.length > 50) {
    name = name.substr(0,50)+'...';
}

Something as simple as:

if (name.length > 50) {
    name = name.substr(0,50)+'...';
}
⒈起吃苦の倖褔 2024-12-27 07:07:13
if ($('#name').text().length > 50)
{
    $('#name').text( $('#name').text().substring(0,50)+"..." );
}

但您也可以使用 CSS 来实现此目的: http://mattsnider.com/css /css-string-truncation-with-ellipsis/

if ($('#name').text().length > 50)
{
    $('#name').text( $('#name').text().substring(0,50)+"..." );
}

But you can also use CSS for this: http://mattsnider.com/css/css-string-truncation-with-ellipsis/

秋日私语 2024-12-27 07:07:13

这是一个正则表达式的方法来做到这一点:

text.replace(/(^.{50}).*$/,'$1...');  

既然你已经问过,如果你想jqueryfy这个功能,你可以用它制作一个插件:

$.fn.trimAfter(n,replacement){
    replacement = replacement || "...";
    return this.each(function(i,el){
        $(el).text($(el).text().substring(n) + replacement);
    });
}

并像这样使用它:

$("#FN, #LN").trimAfter(50,'...');

here's a regex way to do that :

text.replace(/(^.{50}).*$/,'$1...');  

Since you've asked, if you want to jqueryfy this functionality, you can make a plugin out of it :

$.fn.trimAfter(n,replacement){
    replacement = replacement || "...";
    return this.each(function(i,el){
        $(el).text($(el).text().substring(n) + replacement);
    });
}

And use it like this :

$("#FN, #LN").trimAfter(50,'...');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文