我正在尝试将autoComplete属性指定为“new-password”,但无论我尝试什么值,自动完成值总是“关闭”。
我的代码如下:
<form>
<input autoComplete="new-password" />
...
</form>
输入呈现为:
<input autocomplete="off">
有没有人如何正确指定?
注意:我正在使用react-bootstrap,但这不应该有任何效果,因为<FormControl>
只是将额外的道具传递给底层组件。