Home >Web Front-end >HTML Tutorial >getElementById cannot get the object. . Can't find the reason_html/css_WEB-ITnose

getElementById cannot get the object. . Can't find the reason_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:18:121323browse

This post was last edited by itakeblue on 2013-01-10 00:29:15

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Icon</title></head><body><script type="text/javascript"><!--	document.getElementById('div_test').style.display='none';//--></script><div id="div_test">test</div></body></html>


Such a simple code is a bit strange

The browser prompts a script error 'Error: Cannot get property "style" of undefined or null reference'

Reply to discussion (solution)

Sequential execution, div has not been created yet The code in the srcipt has been executed, so. .

It is executed sequentially. The code in the script is executed before the div is created, so. .

345ae2addd403f5a69b4b37dd383f5b7test16b28748ea4df4d9c2150843fecfba68
4ec11beb6c39d0703d1751d203c17053
33ecf88c11ab409b101a52af6640b976
2cacc6d41bbb37262a98f745aa00fbf0

Thank you everyone, I made a stupid mistake :)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn