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

HTML DOM KeyboardEvent คุณสมบัติ altKey


คุณสมบัติ HTML DOM KeyboardEvent altKey ส่งคืนว่า ALT มีการกดปุ่มหรือไม่เมื่อมีการทริกเกอร์เหตุการณ์สำคัญในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

event.altKey

ให้เราดูตัวอย่างคุณสมบัติ HTML KeyboardEvent altKey−

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
      text-align: center;
   }
   input {
      border: 2px solid #fff;
      padding: 8px;
      background: transparent;
      width: 310px;
      border-radius: 20px;
      outline: none;
   }
   ::placeholder {
      color: #000;
   }
   .show {
      font-size: 1.2rem;
      color: #fff;
   }
</style>
<body>
<h1>HTML KeyboardEvent altKey Property Demo</h1>
<input type="text" placeholder="Enter your message" onkeydown="display(event)">
<div class="show">
</div>
<script>
   function display(event) {
      if (event.altKey) {
         document.querySelector(".show").innerHTML = "The key is " + event.key + " key";
      } else {
         document.querySelector(".show").innerHTML = "The key is " + event.key + " key";
      }
   }
</script>
</body>
</html>

ผลลัพธ์

HTML DOM KeyboardEvent คุณสมบัติ altKey

ตอนนี้ให้เริ่มกดปุ่มใดๆ ในฟิลด์ข้อความ จากนั้นสังเกตว่าเมื่อกดปุ่ม ALT วิธีการทำงานของคุณสมบัติ altKey

HTML DOM KeyboardEvent คุณสมบัติ altKey