追加/前置/附加不起作用

时间:2017-04-09 08:33:57

标签: jquery append prepend

我正在尝试创建一种解决方法来禁用我网站表单上的所有自动填充功能。我一直在阅读文章,但我遇到了 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

0 个答案:

没有答案