HTML基礎教學表單中的單行文字網域與密碼網域

單行文字域

語法格式:

<input  type = “text” 屬性= “值」 />

常用屬性

  • name:文字方塊的名稱。命名規則是:可以包含字母、數字、底線,只能以字母開頭。

  • type:表單元素的型別。

  • value:文字方塊中的值。

  • size:文字方塊的長度,以「字元」為單位。

  • maxLength:最多可以輸入多少個字符,超出的就輸不進去了。

  • readonly:只讀屬性。可以選中,但不能修改。如:readonly = “readonly”

  • disabled:停用屬性。不能選中,不能修改。如: disabled = “disabled”

範例說明:

<input type="text" name="username" />


單行密碼域

#語法格式:

< input  type = “password” 屬性= “值”  />

#常用屬性

  • name:密碼框的名稱。命名規則是:可以包含字母、數字、底線,只能以字母開頭。

  • type:表單元素的型別。

  • value:元素中的值。

  • size:元素的長度,以「字元」為單位。

  • maxLength:最多可以輸入多少個字符,超出的就輸不進去了。

  • readonly:只讀屬性。可以選中,但不能修改。如:readonly = “readonly”

  • disabled:停用屬性。不能選中,不能修改。如: disabled = “disabled”


#實例:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>用户注册</title>
    </head>
    <body>
        <font size="5" color="red">欢迎注册php.cn</font>
        <form name="user" method="get" action="" >
            用户名:<input type="text" name="username" value="请输入您的用户名" maxLength="6"/>
            <br/>
            密码:<input type="password" name="userpwd" maxLength="6"/>
            <br/>
            <input type="submit" value="提交信息"/>
        </form>
    </body>
</html>

大家也可以輸入其他屬性,檢視結果

繼續學習
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>用户注册</title> </head> <body> <font size="5" color="red">欢迎注册php.cn</font> <form name="user" method="get" action="" > 用户名:<input type="text" name="username" value="请输入您的用户名" maxLength="6"/> <br/> 密码:<input type="password" name="userpwd" maxLength="6"/> <br/> <input type="submit" value="提交信息"/> </form> </body> </html>
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!