javaScript初學(xué)
為神魔入門篇里的那個 ?第十二行沒有指明是第二段文字就可以輸出指令
<!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="blue";
? </script>
</body>
</html>
2016-02-12
我的意思是在執(zhí)行第12 行代碼時并沒有指明是第二段文字輸出啊
2016-02-12
document.write("hello");輸出字符串hello