html中的密码字段隐藏选项

时间:2014-05-20 03:51:33

标签: javascript html html5 xhtml html5-canvas

对于我的HTML密码文本框,我使用输入类型作为密码,但我能够看到输入的密码是什么。 在任何情况下,我们都无法看到我们在密码输入中输入的内容。

有人可以建议我如何解决这个问题?尝试下面的代码,复制.TXT文件并另存为.HTML并在Firefox或IE中打开此HTML以复制问题。

这是我有问题的代码:

<htm l>
    <form id="login" method="post" action="index.html">
    <div style="width: 450px; height: 250px; background: blue;BORDER=8"><br/><br/><br/>
    &nbsp;<strong>Username: </strong>&nbsp; <input type="text" name="userid" size="18" maxlength="18"/><br/>&nbsp;<br/>
    &nbsp;<strong>Password : </strong> &nbsp; <input type="password " name="pswrd" size="18" maxlength="18"/>&nbsp;<br/><br/><br/>&nbsp;&nbsp;

    <input type="submit" value="Submit"> &nbsp;&nbsp;
    <input type="reset" value="Cancel" onclick="myFunction()" value="Reset form"/> &nbsp;&nbsp;&nbsp 
    &nbsp;</div><br/><br/></html>

3 个答案:

答案 0 :(得分:0)

好的,type="password"

中有一个额外的空格
<input type="password" name="pswrd" size="18" maxlength="18"/>

删除它。它会正常工作。

答案 1 :(得分:0)

在类型参数后删除密码后面的空格。

答案 2 :(得分:0)

删除空格     type =&#34;密码&#34; 所以,它应该是     类型=&#34;密码&#34;

如果html不理解任何类型,如&#34;密码&#34;然后它假定元素是文本类型