dom_dom0200_002

document.documentElementが参照する要素はどれですか。

  1. <html>要素
  2. <head>要素
  3. <body>要素
  4. <title>要素
正解
  1. <html>要素
解説

document.documentElementはDOMのルート要素である<html>要素を指します。

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

[ javascript ]

console.log(document.documentElement.nodeName); // "HTML"