為什么這樣運(yùn)行不出?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>style樣式</title>
</head>
<body>
? <h2 id="con">I love JavaScript</H2><br>
? <p> JavaScript使網(wǎng)頁顯示動(dòng)態(tài)效果并實(shí)現(xiàn)與用戶交互功能。</p>
? <script type="text/javascript">
?? var pp=document.getElementById("con");
?? pp.style.color="red";
?? pp.style.backgroundColor="#CCC";
?? pp.style.display="none";
? </script>
</body>
</html>
2018-03-26
這行代碼讓<h2>隱藏了。
你可以嘗試
就會(huì)顯示了。