cxz灵
2016-04-22 11:42
我是第一段文字
我是第二段文字
hello
以上是我的结果
你把你的代码贴出来吧 我刚刚解决了我的问题。getElementById 这个里边拼写正确不?
我的也是颜色不变,囧。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>热身</title> </head> <body> <p id="p1">我是第一段文字</p> <p id="p2">我是第二段文字</p> <script type="text/javascript"> document.write("hello"); document.getElementByID("p1").style.color="red"; </script> </body> </html>
document.write("hello") ; //这是输出内容为hello
document.getElementById("p1").style.color="blue"; //这是调用ip为p1的内容,将ip为p1的内容格式的颜色设为蓝色
p1与p2都会输出,p1与p2的输出与document无关,是body中正常输出的内容,但是p1的格式颜色在下面改为蓝色了
正确的输出结果为:
我是第一段文字//此行为蓝色
我是第二段文字
hello
检查一下代码 区分大小写,符号用英文符号
查看代码 有区分大小写 顺便说下引号也要注意加
JavaScript入门篇
739818 学习 · 9566 问题
相似问题