求解各位大神,把js的位置像css那样放,为什么不可以?
<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>初识css</title> <script type="text/javascript"> document.write("hello"); document.getElementById("p1").style.color="blue"; </script> </head> <body> <p id="p1">我是第一段文字</p> <p id="p2">我是第二段文字</p> </body> </html> 为什么P1不显示为蓝色?而css这样的格式就可以呢