如何用replace替换创建一个“bbcode”javascript

这个问题在这里已经有了答案:

  • 如何在JavaScript中替换所有出现的字符串? 41个答案

  • 尝试

    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

    上一篇: How to create a "bbcode" javascript with replace

    下一篇: charsets replacements issue