Javascript匹配替换链接

时间:2011-12-21 12:48:35

标签: javascript jquery preg-match match

理论上,

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

  • RANDOM_TEXT =每篇文章的变化。

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

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

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

感谢您的回答。

2 个答案:

答案 0 :(得分:3)

尝试类似:

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

答案 1 :(得分:-1)

试试这个:

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