Why is a DOM element null?

This question already has an answer here:

  • Why does jQuery or a DOM method such as getElementById not find the element? 6 answers

  • 在创建所有元素时,必须将脚本放置在文档的末尾:

    <!DOCTYPE html>
    <html>
    <head>
    
    </head>
    
    <body>
        <p>I am a paragraph tag</p>
        <h1 >I am an h1 tag</h1>
        <div id="id"> I am a div tag</div>
    </body>
    <script src='test.js'></script>
    

    如果您使用jQuery或window.onload(如果使用纯javascript),则可以使用$(document).ready包装脚本中的内容。

    链接地址: http://www.djcxy.com/p/51668.html

    上一篇: 在addEventListener JavaScript中定义的变量

    下一篇: 为什么DOM元素为空?