Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะเพิ่มคลาสที่ใช้งานให้กับองค์ประกอบปัจจุบันด้วย JavaScript ได้อย่างไร?


ในการเพิ่มคลาสที่ใช้งานให้กับองค์ประกอบปัจจุบันด้วย JavaScript โค้ดจะเป็นดังนี้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   .btn {
      border: none;
      outline: none;
      padding: 10px 16px;
      background-color: #6ea2f0;
      cursor: pointer;
      color:white;
      font-size: 18px;
   }
   .active, .btn:hover {
      background-color: #666;
      color: white;
   }
</style>
</head>
<body>
<h1>Active Button Example</h1>
<div id="sampleDiv">
<button class="btn">Giraffe</button>
<button class="btn active">Cow</button>
<button class="btn">Lion</button>
<button class="btn">Leopard</button>
<button class="btn">Cheetah</button>
</div>
<h2>Press any of the above button to set it class to active</h2>
<script>
   var btns = document.querySelectorAll(".btn");
   Array.from(btns).forEach(item => {
      item.addEventListener("click", () => {
         var selected = document.getElementsByClassName("active");
         selected[0].className = selected[0].className.replace(" active", "");
         item.className += " active";
      });
   });
</script>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

จะเพิ่มคลาสที่ใช้งานให้กับองค์ประกอบปัจจุบันด้วย JavaScript ได้อย่างไร?

เมื่อคลิกปุ่มอื่น −

จะเพิ่มคลาสที่ใช้งานให้กับองค์ประกอบปัจจุบันด้วย JavaScript ได้อย่างไร?