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


HTML input text用法及代碼示例


HTML <input type =” text”>用於定義單行文本字段。文本字段的默認寬度為20個字符。

用法:

<input type="text">

例:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML input type text  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
  
    <h2> 
        HTML <Input Type="text">  
    </h2>  
  
    <form> 
        Name:<input type="text"> 
    </form> 
</body>  
  
</html>                    

輸出:

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

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera

相關用法


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