我正在尝试创建一种解决方法来禁用我网站表单上的所有自动填充功能。我一直在阅读文章,但我遇到了 here 。一种解决方法是向每个表单添加另一个带有属性autocomplete="address-level4"
的输入,因此我在代码中添加了以下内容:
1
jQuery("form").prepend('<div style="border:1px solid red;" class="wow"><input type="text" id="PreventChromeAutocomplete" name="PreventChromeAutocomplete" autocomplete="address-level4" /></div>');
2
jQuery("form").append('<div style="border:1px solid red;" class="wow"><input type="text" id="PreventChromeAutocomplete" name="PreventChromeAutocomplete" autocomplete="address-level4" /></div>');
第3
jQuery('<div style="border:1px solid red;" class="wow"><input type="text" id="PreventChromeAutocomplete" name="PreventChromeAutocomplete" autocomplete="address-level4" /></div>').appendTo('form');
没有任何作用。有些表格没有ID,只有名字,所以我决定只使用form
我做错了什么?
感谢您的帮助。
-Eli