链接文本上的 substr 方法并添加省略号?

发布于 2024-09-19 18:42:04 字数 329 浏览 4 评论 0原文

$("a.newslinks").each(function(){
        if ($(this).text().length > 38) {
            $(this).text().substr(35); //does not work
            $(this).append('...'); //works
            $(this).css({ "color" : "#ff00cc" }); //works
        }
    });

如果链接的文本长度超过 38 个字符,如何将其修剪为 35 个字符并在末尾添加省略号?

$("a.newslinks").each(function(){
        if ($(this).text().length > 38) {
            $(this).text().substr(35); //does not work
            $(this).append('...'); //works
            $(this).css({ "color" : "#ff00cc" }); //works
        }
    });

If a link has its text longer than 38 characters, how can I trim it to 35 chars and add an elipses at the end?

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

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

发布评论

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

评论(2

-小熊_ 2024-09-26 18:42:22

尝试:

$(this).text($(this).text().substr(0, 35)); 

Try:

$(this).text($(this).text().substr(0, 35)); 
动听の歌 2024-09-26 18:42:17

substr(35) 将从字符串开头删除 35 个字符 - 长度不限制为 35 个字符。

尝试:

.substr(0, 35)

此外,此函数仅返回一个新字符串 - 它不会更改原始字符串。所以你需要做

$(this).text($(this).text().substr(0, 35)); 

substr(35) will chop 35 characters off the start of the string - not limit it to 35 chars in length.

Try:

.substr(0, 35)

Also, this function just returns a new string - it doesn't change the original. So you need to do

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