1. 程式人生 > >style物件的使用,當點選時背景顏色變為黃色

style物件的使用,當點選時背景顏色變為黃色

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <!--當點選時背景顏色變為黃色-->
    <script>
          function changeColor(id){
              id.style.backgroundColor='yellow';
          }
    </script>
</head>
<body>
      <p onclick="changeColor(this)">JavaScript事件處理</p>
</body>
</html>

未點選

點選後