getElementById cannot get the object There is a sequence when the browser parses the document. Before the page is loaded, or before the corresponding DOM object is loaded, the corresponding object cannot be obtained. Look at the following code: <script> var temp = document.getElementById("div"); alert(temp); </script> <body> <div id="div"> <input name="username" id="username" type="text"> <button id="btn">Button</button> </div> </body> In this code, This is because when the browser parses the code in the script tag, the DOM elements in the body have not yet been loaded, so naturally nothing can be retrieved. Solution: Move the code in the script to after the body element. <body> <div id="div"> <input name="username" id="username" type="text"> <button id="btn">Button</button> </div> <script> var temp = document.getElementById("div"); alert(temp); </script> </body> Or add window.onload <script> window.onload = function(){ var temp = document.getElementById("div"); alert(temp); } </script> Summarize The above is the editor's introduction to solving the problem that the document.getElementBy series methods cannot obtain objects. I hope it will be helpful to everyone. Thank you very much for your support of the 123WORDPRESS.COM website! |
>>: HTML solves the problem of invalid table width setting
Table of contents Preface What does yarn create d...
In front-end projects, attachment uploading is a ...
Table of contents Listener watch Format Set up th...
This article shares the specific code of JavaScri...
Table of contents join algorithm The difference b...
Preface With the development of big front-end, UI...
The a tag is mainly used to implement page jump, ...
Table of contents Port-related concepts: Relation...
Some students said that they encountered the prob...
Operating environment: MAC Docker version: Docker...
How to install PHP7 on Linux? 1. Install dependen...
GUN Screen: Official website: http://www.gnu.org/...
WeChat applet uses scroll-view to achieve left-ri...
1. Download the mysql-5.7.17-winx64.zip installat...
If you open some Microsoft documents with LibreOf...