js正则匹配排除指定字符串replace

return this.toHtml().replace(/]+>/g, '');上述代码是Ueditor插入“代码语言”修改格式代码是,让Ueditor不将代码过滤时用的。 匹配所有""标签但除出""和

  1. 技术资料
  2. 网站开发
2018-12-28 21:41:52 0
Generic placeholder image
Top-aligned media
广州 | 设计爱好者

关注私信

//QIMCMS用于插入代码使用<pre><code>代码</code></pre>格式
return this.toHtml().replace(/<(?!(code|\/code))[^>]+>/g, '');
//return this.toHtml().replace(/<[^>]+>/g, '');//原

上述代码是Ueditor插入“代码语言”修改格式<pre><code>代码</coed></pre>是,让Ueditor不将<code>代码过滤时用的。

匹配所有"<*>"标签但除出"<code>"和</code>