我正在尝试更改字符串中某些正则表达式匹配的 URL 的颜色。
这是我的代码:
$(document).ready(function(){
//Change the color of words containing the @ sing
$("#modal_0 section p").html(function(_, html){
return html.replace(/(\@\w+)/g, '<span class="change_color">$1</span>');
}); //Works fine
//Change the color of words containing URLs (www.domain.com, domain.com, etc.)
$("#modal_0 section p").html(function(_, html){
return html.replace(/^(?=www\.)?[A-Za-z0-9_-]+\.+[A-Za-z0-9.\/%&=\?_:;-]+$/, '<span class="change_color">$1</span>');
}); //Doesn't work
})
;
当我尝试捕捉包含@sing 的单词时,该函数工作正常。而且我认为正则表达式没有任何问题。
这是 小提琴。