回答編集履歴
2
edit
test
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
[textContent](https://developer.mozilla.org/ja/docs/Web/API/Element/innerHTML)はHTMLエンティティ変換するので
|
2
2
|
|
3
|
-
要素にHTMLを入れたい場合は
|
3
|
+
要素にHTMLを入れたい場合は [createElement](https://developer.mozilla.org/ja/docs/Web/API/Document/createElement)して[append](https://developer.mozilla.org/en-US/docs/Web/API/Element/append)するか、
|
4
4
|
|
5
5
|
innerHTMLで入れてください。
|
1
edit
test
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
textContentはHTMLエンティティ
|
1
|
+
[textContent](https://developer.mozilla.org/ja/docs/Web/API/Element/innerHTML)はHTMLエンティティ変換するので
|
2
2
|
|
3
|
-
要素にHTMLを入れたい場合はcreatElementしてappendするか、
|
3
|
+
要素にHTMLを入れたい場合は> [createElement](https://developer.mozilla.org/ja/docs/Web/API/Document/createElement)して[append](https://developer.mozilla.org/en-US/docs/Web/API/Element/append)するか、
|
4
4
|
|
5
5
|
innerHTMLで入れてください。
|