當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML InputEvent inputType用法及代碼示例


inputType屬性用於了解事件對特定輸入字段或任何其他可編輯內容進行的更改的類型。這是一個隻讀屬性。

用法:

event.inputType

返回值:它返回一個字符串,指示輸入的輸入類型。


例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM InputEvent inputType Property</title> 
</head> 
      
<body style="text-align:center"> 
      
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
  
    <h2>DOM InputEvent inputType Property</h2> 
  
    <textarea rows="2" id="myInput" 
              oninput="Geeks(event)"> 
          
    </textarea> 
      
    <p>Input Type:<span id="p"></span></p> 
      
    <script> 
        function Geeks(event) { 
            document.getElementById("p").innerHTML =  
                                   event.inputType; 
        } 
    </script> 
      
</body> 
</html>                    

輸出:
inputtype

支持的瀏覽器:下麵列出了inputType屬性支持的瀏覽器:

  • 蘋果Safari
  • 穀歌瀏覽器60.0
  • Firefox不支持
  • Opera 47.0
  • Internet Explorer不支持


相關用法


注:本文由純淨天空篩選整理自Vishal Chaudhary 2大神的英文原創作品 HTML | DOM InputEvent inputType Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。