dom_dom0100_004

テキストを表すDOMノードはどれですか?

  1. Elementノード
  2. Textノード
  3. Attributeノード
  4. Documentノード
正解
  1. Textノード
解説

Textノードは、要素内に含まれるテキストを表現します。

使用例(サンプルコード)

[ javascript ]

let p = document.querySelector("p");
console.log(p.firstChild.nodeType); // Textノードの型は3