如何防止铬基浏览器为特定输入自动填充个人信息?
<div class="form-group">
<label class="control-label" for="Nomenclature"> Nomenclature</label>
<input name="Nomenclature" class="form-control" id="Nomenclature" type="text" value="" autocomplete="off">
</div>某种程度上,边缘女士假设这个输入是个人信息,但事实并非如此。正如您所看到的,自动完成对于这个输入是关闭的,所以我想个人信息不尊重这个属性。
这种行为对用户来说非常烦人,因为这种输入必须是唯一的。
我的门户中还有其他具有这种行为的输入,对用户来说没有任何意义。
发布于 2022-01-11 12:28:19
简单地添加带有表单的autocomplete="off"
https://stackoverflow.com/questions/70666770
复制相似问题