chrome浏览器input的自动完成,点击之后自动输入,input的背景会变成香蕉黄,用如下方法修复: /* Change the white to any color ;) 就是给input设置内置阴影!而且一定要大,至少要比你的input本身大,不过,box-shadow是很慢的, 而且,如果你的input是用图片做背景的话,是没有办法做这么干的*/ input:-webkit-autofill { -webkit-box-shadow: 0 0 0 100px white inset;
autocomplete方法 https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion#The_autocomplete_attribute_and_login_fields 对于普通的表单区域 此属性设置为 off,具有阻止浏览器记忆的功能 Setting autocomplete="off" here has two effects