Javascript 匹配替换链接

发布于 2024-12-22 16:07:04 字数 294 浏览 0 评论 0原文

理论上,

我有链接:“http://t.co/RANDOM_TEXT”

  • RANDOM_TEXT = 每篇文章的更改。

我想将整个链接更改为“阅读更多...”而不仅仅是“http://t.co/”。

好吧,“http://t.co/blabla123”需要是“阅读更多...”

,“http://t.co/blabla6354”需要是“阅读更多...”等等。

感谢您的任何帮助回答。

Theoretically,

I'v got link: "http://t.co/RANDOM_TEXT"

  • RANDOM_TEXT = Changes in each post.

I want to change the whole link to "Read more..." not just the "http://t.co/".

Well, "http://t.co/blabla123" need to be "Read more..."

and "http://t.co/blabla6354" need to be "Read more..." Etc.

Thanks for any answer.

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

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

发布评论

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

评论(2

π浅易 2024-12-29 16:07:04

尝试类似的方法:

$('a[href^="http://t.co/"]').text('Read more...');

Try something like:

$('a[href^="http://t.co/"]').text('Read more...');
呆头 2024-12-29 16:07:04

试试这个:

$("a").each(function() {
  if($(this).html().match('t.co'))
    $(this).html('Read Mode');
});        

Try this:

$("a").each(function() {
  if($(this).html().match('t.co'))
    $(this).html('Read Mode');
});        
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文