嘿,我有一些格式如下的文字:
[quote]foo text[/quote]
我希望将其更改为:
<div class="quote-text">foo text</div>
我如何用JS做到这一点?
我正在使用jQuery。
答案 0 :(得分:0)
var myString = "blah blah [quote]test[/quote] foo bar [quote]another thing[/quote]";
myString.replace(/\[quote\](.*?)\[\/quote\]/g, '<div class="quote-text">$1</div>');
答案 1 :(得分:0)
以下应该这样做:
string.replace(/\[quote\](.*?)\[\/quote\]/g, "<div class=\"quote-text\">".$1."</div>");