Javascript用标签bbcode包装文本?

时间:2012-03-07 00:52:02

标签: javascript jquery bbcode

无论如何用texsrea文本换标签? 使用Javascript / Jquery的

  

B =粗体I =斜体U =下划线S =打击

例如:

-+-+-+-+-
 B I U S
-+-+-+-+-
<textarea>
 Some text here
</textarea>

当我突出显示“here”然后点击“粗体”时,它会像这样。

-+-+-+-+-
 B I U S
-+-+-+-+-
<textarea>
 Some text [b]here[/b]
</textarea>

希望我能找到解决方案 这就是谢谢。

2 个答案:

答案 0 :(得分:4)

这是解决方案

function wrapText(elementID, openTag, closeTag) {
    var textArea = $('#' + elementID);
    var len = textArea.val().length;
    var start = textArea[0].selectionStart;
    var end = textArea[0].selectionEnd;
    var selectedText = textArea.val().substring(start, end);
    var replacement = openTag + selectedText + closeTag;
    textArea.val(textArea.val().substring(0, start) + replacement + textArea.val().substring(end, len));
}

答案 1 :(得分:1)

使用率

console.log(parseBB('[b]hello [/b][u]world[/u]'));
console.log(parseBB(document.getElementById('textareaID').value));
console.log(parseBB($('#textareaID').val()));

测试用例

$('#output-container').html(parseBB($('#textareaID').val()));

...

function parseBB(string){
var _string = string.replace(/\n/g, '<br>'),
parseExp = new RegExp(/^(.*)\[(b|u|i|s)\]([A-Za-z0-9 ._-]+)\[\/[a-z]+\](.*)$/g);

(function run(){
    if(parseExp.test(_string)){
        _string = _string.replace(parseExp , '$1<$2>$3</$2>$4');
        run();
    }
})();
return _string;
}