我的表单中有一个密码输入框,但它仍然显示已输入的密钥,而不是它应该是什么
见下图:
http://imageshack.com/a/img836/6153/y3po.jpg
表单代码:
<form name="login" id="login" form action="log.php" method="POST">
<div>
Username:
</div>
<input type"text" name="username">
<div>
Password
</div>
<input type"password" name="password">
<div>
</div>
<input type="submit" name="login" id="submit" value="Log in">
</form>
答案 0 :(得分:2)
您需要在属性名称和属性值之间添加=
个字符。
如果您使用了a validator,那么这将被取消。
答案 1 :(得分:0)
type"text"
应为type="text"
和
type"password"
应为type="password"
答案 2 :(得分:0)
=
之后您遗漏了type
。