理论上,
我有链接:“http://t.co/RANDOM_TEXT”
我想将整个链接更改为“阅读更多...”而不是只是“http://t.co/”。
嗯,“http://t.co/blabla123”需要“阅读更多......”
和“http://t.co/blabla6354”需要“阅读更多......”等等。
感谢您的回答。
答案 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');
});