gpt4 book ai didi

javascript - 使 @username 可点击 jquery

转载 作者:行者123 更新时间:2023-11-28 16:21:22 24 4
gpt4 key购买 nike

下面的代码适用于 Mootools 库,如果可能的话,我希望它也适用于 jQuery,但到目前为止我还没有运气。

HTML

<p id="test">@user has an email address of user@email.com. See! the regexp works @people!</p>

MooTools

$('test').set('html', $('test').get('html').replace(/\B\@([\w\-]+)/gim, function(match, name){
return '<a href="http://twitter.com/users/' + name + '">' + match + '</a>';
}));

Fiddle

最佳答案

试试这个:

$('#test').html($('#test').html().replace(/\B\@([\w\-]+)/gim, function(match, name){
return '<a href="http://twitter.com/users/' + name + '">' + match + '</a>';
}));

Example fiddle

关于javascript - 使 @username 可点击 jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9482945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com