0

尝试向 DOM 添加新元素,但根据我尝试执行的操作,我会遇到各种错误。

http://jsfiddle.net/pRVAd/

<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>​
4

4 回答 4

3

该脚本在其中<head>,您的代码会立即运行(它不是延迟的函数调用)。当<body>您尝试运行它时,它不存在。

将脚本移动到之前</body>或将其移动到函数中并调用它onload

getElementsByTag不是document对象上的方法。您可能的意思是getElementsByTagName,但这会返回一个 NodeList,而不是 HTMLElementNode。这就像一个数组。你需要把第一个项目拉下来,或者更好:

利用document.body

于 2012-05-04T12:23:33.207 回答
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>​

window.onload以及如何 正确使用它

document.body

于 2012-05-04T12:33:03.573 回答
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>

这是JSFiddle 演示

于 2012-05-04T12:26:36.103 回答
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]

于 2012-05-04T12:28:25.573 回答