尝试向DOM添加新元素,但是根据我尝试的操作,我会遇到各种错误。
<html>
<head>
<script>
var newElement = document.createElement("pre");
var newText = document.createTextNode("Contents of the element");
newElement.appendChild(newText);
document.getElementsByTag("body").appendChild(newElement);
</script>
</head>
<body>
<p>Welcome</p>
</body>
</html>
答案 0 :(得分:3)
脚本位于<head>
,您的代码立即运行(它不是延迟函数调用)。尝试运行时<body>
不存在。
将脚本移至</body>
之前或将其移至函数中并将其称为onload
。
getElementsByTag
不是document
对象上的方法。您可能意味着getElementsByTagName
,但它返回NodeList,而不是HTMLElementNode。这就像一个数组。您需要将第一个项目拉出来或更好:
使用document.body
答案 1 :(得分:0)
这是你想要的:
<html>
<head>
<script>
var newElement = document.createElement("pre");
var newText = document.createTextNode("Contents of the element");
newElement.appendChild(newText);
document.body.appendChild(newElement);
</script>
</head>
<body>
<p>Welcome</p>
</body>
答案 2 :(得分:0)
尝试使用这个新的小提琴:http://jsfiddle.net/pRVAd/1/
<html>
<head>
<script>
function doTheThing() {
var newElement = document.createElement("pre");
var newText = document.createTextNode("Contents of the element");
newElement.appendChild(newText);
document.getElementsByTagName("body")[0].appendChild(newElement);
}
</script>
</head>
<body>
<input type="button" value="Do The Thing" onclick="doTheThing()">
<p>Welcome</p>
</body>
<html>
正确的语法是:document.getElementsByTagName("TagName")[index]
答案 3 :(得分:0)
<html>
<head>
<script>
// This function will be executed once that the DOM tree is finalized
// (the page has finished loading)
window.onload = function() {
var newElement = document.createElement("pre");
var newText = document.createTextNode("Contents of the element");
newElement.appendChild(newText);
// You have to use document.body instead of document.getElementsByTag("body")
document.body.appendChild(newElement);
}
</script>
</head>
<body>
<p>Welcome</p>
</body>
</html>