2

我希望<a href="http://twitter.com/mention">@mention</a>使用 Javascript 或 jQuery 替换字符串中的任何 @mention。我有来自如何用链接替换普通 URL 的第二个答案的功能?我只是想进一步添加replacePattern

4

1 回答 1

9
function replaceAtMentionsWithLinks ( text ) {
    return text.replace(/@([a-z\d_]+)/ig, '<a href="http://twitter.com/$1">@$1</a>'); 
}

在这里查看它的实际操作:http: //jsfiddle.net/h6HMY/

于 2013-06-02T03:51:36.453 回答