我正在开发 React 应用程序,并且遇到了 Chrome 自动填充功能的问题。当我有用户名和密码的输入字段时,Chrome 会自动填写信息,这给我的用户带来了可用性问题。出于安全和用户体验的原因,我想禁用此自动填充行为。
我尝试将 autocomplete="off" 属性添加到输入字段,但它似乎没有按预期工作。 Chrome 继续自动填充代码下方的字段
what need to do to remove autofill autoComplete=off
<form autocomplete="off">
<input role="presentation" type="text" name="username"
autocomplete="off" />
<!--OR-->
<input role="presentation" type="text" name="email" autocomplete="off"
/>
<input role="presentation" type="password" name="password
autocomplete="new-password" />
</form>