如何在浏览器决定哪些表单域的用户名/密码?(How does the the browser dec

2019-08-17 07:26发布

现代浏览器保存的密码。 哪些标准会影响这个决定?

背景:

我有以下形式的注册页面:

    <form action="/BlaBla/Account/Register" method="post">
    <div>
        <fieldset>
            <legend>Account Information</legend>
            <p>
                <label for="username">
                    Username:</label>
                <input id="username" name="username" type="text" value="" />
            </p>
            <p>
                <label for="email">
                    Email:</label>
                <input id="email" name="email" type="text" value="" />
            </p>
            <p>
                <label for="invitationCode">
                    Invitation Code:</label>
                <input id="invitationCode" name="invitationCode" type="text" value="" />
            </p>
            <p>
                <label for="securityQuestion">
                    Security question:</label>
                <input id="securityQuestion" name="securityQuestion" type="text" value="" />
            </p>
            <p>
                <label for="securityAnswer">
                    Security answer:</label>
                <input id="securityAnswer" name="securityAnswer" type="text" value="" />
            </p>
            <p>
                <label for="password">
                    Password:</label>
                <input id="password" name="password" type="password" />
            </p>
            <p>
                <label for="confirmPassword">
                    Confirm password:</label>
                <input id="confirmPassword" name="confirmPassword" type="password" />
            </p>
            <p class="buttons">
                <input type="submit" value="Register" />
            </p>
        </fieldset>
    </div>
    </form>

Mozilla的似乎认为该领域securityAnswerpassword是用户/密码字段,用笨拙的后果(安全答案存储的用户名是坏的)。

Answer 1:

我猜它假定上面的“密码”字段是用户名。 你可以尝试重新进行排序。



Answer 2:

此外,Internet Explorer的“记住密码”功能不会记住你的密码,如果你在你的表格超过2场。



Answer 3:

输入类型被设定为密码,所以...(例如<input type="password" name="blah" />



文章来源: How does the the browser decide which form fields are username/password?