禁止表单自动填充

禁止浏览器表单自动填充

普通文本框添加 autocomplete=“off”,密码输入框添加 autocomplete=“new-password”。

<input type="text" autocomplete="off" name="userName"/>

<input type="password" autocomplete="new-password" name="password"/>

你可能感兴趣的:(总结,html)