dom_dom0100_007

次のうち、コメントを表すノードはどれですか?

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

Commentノードは、HTML/XML文書内のコメント(例: <!-- コメント -->)を表します。

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

[ javascript ]

// コメントノードを取得
let comments = [...document.childNodes].filter(n => n.nodeType === Node.COMMENT_NODE);
console.log(comments);