Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 html 构建一个身份验证(用户名和密码)页面,我想确保用户插入其用户名/密码组合的所有字符(没有复制和粘贴、自动完成等...)
但我对密码管理器扩展(例如 lastpass)有疑问。如何防止他们自动写入用户名/密码?
使用 html5 可以防止自动完成
要确保您的 html 文档是 html,请使用以下 doctype
要使输入字段阻止自动完成:
<input type="password" name="passw" autocomplete="off">