我有一些带有 html 标签的字符串。
var str = '<a href="www.com">text</a>
<script>
//some code etc
</script>
............... etc
';
我需要使用带有 js 的 replace() 函数的正则表达式删除 <script>....</script> 。不知道该怎么做。
我的努力是:
/(<script).(</script>)/m
/<script.*>([\s\S]*)</script>/m
/(<script)*(</script>)/
/<script*</script>/
没有成功=(