左边例子中返回的值是NULL ,是因为SCRIPT写在HEAD里直接打印输出了吗
左边例子中返回的值是NULL ,是因为SCRIPT写在HEAD里直接打印输出了吗
左边例子中返回的值是NULL ,是因为SCRIPT写在HEAD里直接打印输出了吗
2015-06-11
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>document.getElementById</title> <script type="text/javascript"> var mychar=document.getElementById("con"); document.write("结果:"+mychar); //输出获取的P标签。 </script> </head> <body> <p id="con">JavaScript</p> <script type="text/javascript"> document.write(mychar); </script> </body> </html>
输出是
结果:null
JavaScript
null
为什么第三个还是null?
举报