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

HTML KeyboardEvent ซึ่งคุณสมบัติ


HTML KeyboardEvent ซึ่งคุณสมบัติส่งคืนรหัสอักขระ Unicode ของคีย์ที่เรียกใช้ onkeypress เหตุการณ์ onkeydown เหตุการณ์หรือ onkeyup เหตุการณ์ในเอกสาร HTML

ไวยากรณ์

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

event.which

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

ตัวอย่าง

<!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 which Property Demo</h1>
<input type="text" placeholder="Enter your message" onkeypress="display(event)">
<div class="show">
<p>The above message in Unicode character is:</p>
</div>
<script>
   function display(event) {
      document.querySelector(".show").innerHTML += "<p>" + event.which + "</p>";
   }
</script>
</body>
</html>

ผลลัพธ์

HTML KeyboardEvent ซึ่งคุณสมบัติ

ตอนนี้เริ่มพิมพ์ข้อความของคุณในช่องข้อความแล้วดูด้านล่างข้อความเดียวกันในอักขระ Unicode -

HTML KeyboardEvent ซึ่งคุณสมบัติ