回答編集履歴

1

調整

2021/07/01 11:41

投稿

yambejp
yambejp

スコア116734

test CHANGED
@@ -9,3 +9,25 @@
9
9
  --><span class="pc__fv__center__title__inner1">の</span>
10
10
 
11
11
  ```
12
+
13
+
14
+
15
+ jsで処理していいなら
16
+
17
+ ```javascript
18
+
19
+ window.addEventListener('DOMContentLoaded', ()=>{
20
+
21
+ document.querySelector('h2').childNodes.forEach(x=>{
22
+
23
+ if(x.nodeType=="3" && /\n/.test(x.nodeValue)){
24
+
25
+ x.nodeValue=x.nodeValue.replace(/\n/g,'');
26
+
27
+ }
28
+
29
+ });
30
+
31
+ });
32
+
33
+ ```