回答編集履歴
2
typo
test
CHANGED
@@ -11,6 +11,6 @@
|
|
11
11
|
<script>
|
12
12
|
//処理
|
13
13
|
</script`+'>';
|
14
|
-
html=html.replace(/<script[\s\S]+?<\/script>/mig,'
|
14
|
+
html=html.replace(/<script[\s\S]+?<\/script>/mig,'');
|
15
15
|
console.log(html);
|
16
16
|
```
|
1
typo
test
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
ちょっとなにをしたいかわかりません、scriptの中にnoscriptを書いても無駄です
|
2
|
-
またscriptの中に「</script>」という文字が出現した
|
2
|
+
またscriptの中に「</script>」という文字が出現した時点でjsは終了してしまいます
|
3
3
|
|
4
4
|
だいぶ好意的に解釈してざっくりこんな感じ
|
5
5
|
```javascript
|