<script>
$(document).ready(function(){
$(".blog").each(function()
{
var text= $(this).html();
text=text.replace(/@([a-z A-Z 0-9_]+)/ig,'<a href="#">([a-z A-Z 0-9_]+)</a>');
$(this).html(text);
});
}) ;
</script>
这是HTML:
<div class="blog">
Lorem @Ipsum
dolor#yeah</div>
答案 0 :(得分:1)
您可以使用$1
text = text.replace(/@([a-z A-Z 0-9_]+)/ig,'<a href="#">$1</a>');