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


HTML input tel用法及代碼示例


HTML <input type =” tel”>用於定義輸入用戶電話號碼的字段。

用法:

<input type="tel"> 

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML Input Type Tel 
    </title> 
</head> 
<style> 
    #Geek_p { 
        font-size:30px; 
        color:green; 
    } 
</style> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>HTML <Input Type="tel">  
</h2> 
    <form> 
        Phone No.:
        <input type="tel"> 
        <br> 
        <br> 
  
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • 穀歌瀏覽器
  • Firefox
  • Edge
  • Opera
  • 蘋果Safari

相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <input type=”tel”>。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。