简体   繁体   English

如何在博客上的帖子缩略图的末尾删除三个点(…)

[英]How to remove three dots (…) at the end of post thumbnail on blogger

How to remove three dots (...) at the end of post thumbnail (See Below image) on blogger. 如何在博客上的帖子缩略图的末尾删除三个点(...)(请参见下图)。 Please help me. 请帮我。 Thanks. 谢谢。 three dots (...) at the end of post thumbnail 帖子末尾的三个点(...)

You can try using jquery. 您可以尝试使用jquery。 So your paragraph that only contain '...' will be alter. 因此,仅包含“ ...”的段落将被更改。

$("p:contains('...')").each(function() {
   var text = $(this).text();
   $(this).text(text.replace('...', '')); 
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM