如何在博客上删除帖子缩略图末尾的三个点(...)(见下图)。请帮我。谢谢。 three dots (...) at the end of post thumbnail
答案 0 :(得分:1)
您可以尝试使用jquery。因此,只包含'...'的段落将会改变。
$("p:contains('...')").each(function() {
var text = $(this).text();
$(this).text(text.replace('...', ''));
});