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

HTML DOM InputEvent inputType คุณสมบัติ


คุณสมบัติ HTML DOM InputEvent inputType ส่งคืนประเภทอินพุตของเหตุการณ์ที่ทริกเกอร์

ไวยากรณ์

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

ส่งคืนอักขระที่พิมพ์ล่าสุดในช่องข้อความ -

event.inputType

ตัวอย่าง

ให้เราดูตัวอย่างสำหรับ InputEvent inputType ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>InputEvent inputType</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>InputEvent-inputType</legend>
<label>Action teller:
<input type="text" id="textSelect" oninput="getEventInputType(event)">
</label>
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var textSelect = document.getElementById("textSelect");
   function getEventInputType(InputEvent) {
      if(InputEvent.inputType === 'insertText')
         divDisplay.textContent = 'You are typing: '+textSelect.value;
      else if(InputEvent.inputType === 'deleteContentBackward')
         divDisplay.textContent = 'You are using backspace key';
      else if(InputEvent.inputType === 'deleteContentForward')
         divDisplay.textContent = 'You are using delete key';
      else
         divDisplay.textContent = 'You are sitting idle, do something';
   }
</script>
</body>
</html>

ผลลัพธ์

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

ก่อนพิมพ์อะไรในช่องข้อความ −

HTML DOM InputEvent inputType คุณสมบัติ

การพิมพ์ในช่องข้อความ −

HTML DOM InputEvent inputType คุณสมบัติ

การใช้แป้นแบ็คสเปซในช่องข้อความ -

HTML DOM InputEvent inputType คุณสมบัติ

การใช้ปุ่มลบในช่องข้อความ -

HTML DOM InputEvent inputType คุณสมบัติ