如何用replace替换创建一个“bbcode”javascript
这个问题在这里已经有了答案:
尝试
postText.html(postText
.html()
.replace(/[tag]/g,'<span class="tag">')
.replace(/[/tag]/g,'</span>')
);
例如:
$('.post').html(function(){
return $(this)
.html()
.replace(/[tag]/g,'<span class="tag">')
.replace(/[/tag]/g,'</span>')
})
演示:小提琴
链接地址: http://www.djcxy.com/p/16847.html