我有富文本内容的字符串
例如这样的东西
<p>Hello</p>
<br/>
<p> Christian </p>
<pre> Don't Know what to do </pre>
现在我不希望脚本出现在上述内容中,如果存在的话
所以如果我的内容看起来像这样
<p>Hello</p>
<br/>
<p> Christian </p>
<script type="text/javascript"> alert("Hello")</script>
<pre> Don't Know what to do </pre>
需要替换为
<p>Hello</p>
<br/>
<p> Christian </p>
<script type="text/javascript"> alert("Hello")</script>
<pre> Don't Know what to do </pre>
我目前已经为它开发了正则表达式
所以我的代码看起来像这样
if content.match(/<script(.+?)>/) {
content = content.replace(content.match(/<script(.+?)>/)[0],content.match(/<script(.+?)>/)[0].replace("<","<").replace(">",">"))
}
if content.match(/<\script\s*>/)
{
content = content.replace(content.match(/<\/script\s*>/)[0],content.match(/<\/script\s*>/)[0].replace("<","<").replace(">",">"))
}
所以结果内容将有脚本标签转义
谁能建议我更清洁的方法来实现这一目标?