JavaScript使網頁顯示動態效果並實現與使用者互動功能。

ruiguang21發表於2017-12-26
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>style樣式</title>
</head>
<body>
  <h2 id="con" onclick="kk()">I love JavaScript</H2>
  <p> JavaScript使網頁顯示動態效果並實現與使用者互動功能。</p>
  <script type="text/javascript">
  var ss= document.getElementById("con");
 ss.style.color="red";
 ss.style.backgroundColor="#ccc";
 function kk()
 {
     ss.style.display="none";
 }
 


  </script>
</body>
</html>

相關文章