gpt4 book ai didi

javascript - trim WordPress 博客文章标题

转载 作者:行者123 更新时间:2023-12-01 03:44:07 24 4
gpt4 key购买 nike

<h2 class="entry-title" itemprop="headline">
<a href="http://alzheimerscare.in/lorem-ipsum-is-simply-dummy-text-of-the-printing-and-typesetting-industry-lorem-ipsum-has-been-the-industrys/" title="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s" rel="bookmark">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s</a>
</h2>

我想将 WordPress 博客文章标题 trim 为至少 15 个字符,页面中有很多帖子,我想使用 jquery 或 javascript 将每个帖子的标题 trim 为至少 15 个字符。谢谢。

最佳答案

这应该可以解决问题。它找到页面上的每个标题,将其 trim 为 15 个字符并添加“...” - 除非您随后要做某种“显示/隐藏”效果或其他效果,否则在 php 中可能会更好地完成;)

$(".entry-title a").each (function () {
if ($(this).text().length > 15)
$(this).text($(this).text().substring(0,15) + '...');
});

关于javascript - trim WordPress 博客文章标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43672280/

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