这样是不是写满了三种。 text、password、value、 讨论还有啥写法?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>input-placeholder</title>
</head>
<body>
<form method="post" action="save.php">
<h2>账户:</h2> <input type="text" name="myName" placeholder="请输入用户名"/>
<h2>密码:</h2> <input type="password" name="psss" placeholder="请输入密码"/>
</form>
<h3>账号:</h3> <input type="text" placeholder="请输入用户名"/>
<h3>密码:</h3><input type="password" placeholder="请输入用户名"/>
<br/>
<h4>验证码:</h4><input type="value" placeholder="输入验证码"/>
</body>
</html>