我希望使用Javascript或jQuery用<a href="http://twitter.com/mention">@mention</a>
替换字符串中的任何@mention。我有How to replace plain URLs with links?的第二个答案中的函数,我只是想添加一个replacePattern
答案 0 :(得分:8)
function replaceAtMentionsWithLinks ( text ) {
return text.replace(/@([a-z\d_]+)/ig, '<a href="http://twitter.com/$1">@$1</a>');
}
在此处查看:[{3}}