📅  最后修改于: 2023-12-03 14:41:51.050000             🧑  作者: Mango
在HTML中,标签有一个属性叫做“autocomplete”,它可以控制表单输入框的自动完成行为。其中,输入密码框可以设置autocomplete="current-password"属性,用于防止自动填充密码。
<input type="password" autocomplete="current-password">
<form action="" method="post">
<label for="username">用户名:</label>
<input type="text" name="username" id="username"><br>
<label for="password">密码:</label>
<input type="password" name="password" id="password" autocomplete="current-password"><br>
<input type="submit" value="登录">
</form>
上述代码中,第二个输入框设置了autocomplete="current-password"
属性,用于防止自动填充密码。
以上就是HTML中控制输入密码框的自动完成行为的方法,希望对您有所帮助!