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


HTML input url用法及代碼示例


HTML <input type =” url”>用於定義輸入URL的字段。提交表單之前,此輸入值會自動驗證。

用法:

<input type="url"> 

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML Input Type URL 
    </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="URL">  
</h2> 
    <form> 
        <input type="url"
               placeholder="search a URL"> 
        <br> 
        <br> 
  
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • 穀歌瀏覽器
  • Firefox
  • 邊10.0
  • Opera 10.1
  • 蘋果Safari

相關用法


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