dom_dom0200_003

HTML文書におけるメタ情報やスクリプト、スタイルを含む要素はどれですか。

  1. body
  2. head
  3. title
  4. document
正解
  1. head
解説

<head>要素には、タイトル、スタイル、メタ情報、外部リソースのリンクなどが含まれます。

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

[ javascript ]

console.log(document.head.querySelector("title").textContent);