Heim  >  Artikel  >  Web-Frontend  >  Firefox中autocomplete="off" 设置不起作用Bug的解决方法_javascript技巧

Firefox中autocomplete="off" 设置不起作用Bug的解决方法_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:09:051059Durchsuche

自动补全也成自动完成,最经典的如google的搜索框,输入一个字母后会给用户很多提示选择

Firefox中autocomplete=

查看源码会发现input输入框加上了autocomplete="off",此为了屏蔽浏览器表单默认的记忆功能。淘宝,百度的搜索框也有该属性。autocomplete 属性是非标准的,首先在 IE5 中加入,后 其它浏览器 都 支持。html5 也将其列表标准。

但Firefox中有个Bug。首次提交后,FF会提示是否记住某某网站的密码,点击“记住”后 input[type=text]设置autocomplete="off"将不起作用。如下

复制代码 代码如下:




Firefox autocomplete="off" bug










FF默认设置是“记住网站密码”的

Firefox中autocomplete=
有两种情况:
1,form中没有input[type=password],autocomplete="off"将起作用
2,去掉form,设置input[type=text]的autocomplete也起作用

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn