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>

猜你喜欢

转载自blog.csdn.net/qq_42265536/article/details/85216420