在使用React中的<Input>时,出现自动填写的情况:

<Input>自动填写
点击填写后背景色变蓝:

蓝色背景
查看CSS:

input的CSS
user agent stylesheet,浏览器默认样式。这是chrome浏览器自带的autofill。
关闭
<Input autocomplete="off" />
在使用React中的<Input>时,出现自动填写的情况:
点击填写后背景色变蓝:
user agent stylesheet,浏览器默认样式。这是chrome浏览器自带的autofill。
<Input autocomplete="off" />