8
ブラウザでエラーが発生するのはなぜですか?TypeError:document.body is null
TypeError: document.body is null
コードはJSfiddleでうまくいきます。
HTML
<head>
<meta charset="UTF-8">
<title></title>
<script src="jsscript.js"></script>
</head>
<body>
</body>
JS
var creElem = document.createElement("p");
creElem.innerHTML = "Hellow World";
creElem.setAttribute("id", "id_name");
document.body.appendChild(creElem);
JSFiddleは、スクリプトを実行します。 (左パネルの "onLoad") – iForests