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


HTML input email用法及代碼示例


HTML <input type =“ email”>用於定義電子郵件地址字段。輸入的電子郵件ID將自動驗證,以檢查電子郵件ID的格式是否正確。

用法

<input type="email"> 

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title> 
            HTML input type email 
        </title> 
    </head> 
      
    <body style="text-align:center;"> 
          
        <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1> 
          
        <h2>HTML <input type ="email"></h2> 
          
        <form> 
            Email:<input type ="email" 
                value="manaschhabra499@gmailo.com"> 
        </form> 
    </body> 
</html>                    

輸出:

支持的瀏覽器:<input type =“ email”>支持的瀏覽器如下:

  • 穀歌瀏覽器5.0
  • Internet Explorer 10.0
  • Firefox 4.0
  • Safari 5.0
  • Opera 10.1

相關用法


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