HTML文書におけるメタ情報やスクリプト、スタイルを含む要素はどれですか。
- body
- head
- title
- document
正解
- head
解説
<head>要素には、タイトル、スタイル、メタ情報、外部リソースのリンクなどが含まれます。
使用例(サンプルコード)
[ javascript ]
console.log(document.head.querySelector("title").textContent);
目指せ!! ソフトウェアアーキテクト
<head>要素には、タイトル、スタイル、メタ情報、外部リソースのリンクなどが含まれます。
[ javascript ]
console.log(document.head.querySelector("title").textContent);