1. 程式人生 > >html input標籤 密碼文字框 password

html input標籤 密碼文字框 password

語法:

<input type="password" >

 

密碼文字框的重要屬性與 text 一致

value : 定義文字框的預設值,也就是文字框內的文字

siae : 定義文字框的長度,以字元為單位

maxlength : 設定文字框中最多可以輸入的字元數

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
</head>
<body>

    <form name="my_form" method="POST">
        賬號:<input type="text" value="zql" size="20"><br>
        密碼:<input type="password" size="20">
    </form>

</body>
</html>