0

我的代码是

<html>
    <head id="Head1" runat="server">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <input type="password" id="txtNewpasswd"  />
        </form>
    </body>
</html>

而在 FireFox 20.0.1 中,总是这样......为什么?谁能帮我???

结果

4

1 回答 1

0

在我看来这是一个保存的密码。

Firefox 会询问您是否要保存password字段的内容,然后会在加载时自动完成这些数据。

尝试添加autocomplete属性:

<input type="password" id="txtNewpasswd" autocomplete="off"/>
于 2013-05-26T09:30:18.630 回答