我正在使用replace
创建自己的小编辑器。
function textarea_post(){
var text = $(".editor").val();
text = text.replace("<code>","<pre>").replace("</code>","</pre>");
$(".results").html(text);
}
将textarea <code></code>
标记更改为<pre></pre>
问题是它只能运行一次。
我试过
function textarea_post(){
var text = $(".editor").val();
text = text.replace(/<code>/g,"<pre>").replace(/</code>/g,"</pre>");
$(".results").html(text);
}
但它不适用于结束标签。