当记住用户名和密码后,下次填写表单时,被记住的部分会被填充为淡黄色,有些时候不好看,能不能自定义呢,该如何自定义?
自动填充变成透明的话,google下还有另一种曲线救国的方式
:-webkit-autofill {
-webkit-text-fill-color: #fff !important;
transition: background-color 5000s ease-in-out 0s;
}
就是让浏览器颜色过5000s再变,还是蛮有用的
这个本人原创文章,原文链接
chrome浏览器自动填充表单的黄色背景高亮(#FAFFBD
)一直困扰着我,我之前没想着理它,可是最近一个登陆框,需要用到图标,于是我草率的直接设置在input
元素里面,结果问题就来了,很难看很难看,因此还是总结一下。
这个问题,在2008年的时候就已经存在了,隔了好几年了,在chromium上面可以找到 Issue 46543,但是官方好像没有理这个问题,英文没怎么看懂,谁理解的,可以给大家分享一下。
Webkit内核的浏览器有一个-webkit-autofill
私有属性,
通过审查元素可以看到这是由于chrome会默认给自动填充的input表单加上input:-webkit-autofill私有属性,然后对其赋予以下样式:
css
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { background-color: rgb(250, 255, 189); /* #FAFFBD; */ background-image: none; color: rgb(0, 0, 0); }
因此我们就会想到覆盖这个样式,代码如下,但是依然不能覆盖原有的背景、字体颜色。需要注意的是:加 !important
依然不能覆盖原有的背景、字体颜色,除了chrome默认定义的background-color
,background-image
,color
不能用 !important
提升其优先级以外,其他的属性均可使用!important
提升其优先级。
css
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { background-color: #FFFFFF; background-image: none; color: #333; /* -webkit-text-fill-color: red; //这个私有属性是有效的 */ } input:-webkit-autofill:hover { /* style code */ } input:-webkit-autofill:focus { /* style code */ }
解决办法:
css
input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset; -webkit-text-fill-color: #333; }
解决办法:
js
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) { var _interval = window.setInterval(function () { var autofills = $('input:-webkit-autofill'); if (autofills.length > 0) { window.clearInterval(_interval); // 停止轮询 autofills.each(function() { var clone = $(this).clone(true, true); $(this).after(clone).remove(); }); } }, 20); }
下面的js不是太靠谱
js
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) { $(window).load(function(){ $('input:-webkit-autofill').each(function(){ var clone = $(this).clone(true, true); $(this).after(clone).remove(); }); }); }
设置表单属性 autocomplete="off/on"
关闭自动填充表单,自己实现记住密码
html
<!-- 对整个表单设置 --> <form autocomplete="off" method=".." action=".."> <!-- 或对单一元素设置 --> <input type="text" name="textboxname" autocomplete="off">
网上大部分文章是使用Cookie实现记住用户名、密码。不管是在前端,还是后端都可以实现。本文不对Cookie存储展开讨论。可自行谷歌
stackoverflow.com上面也有类似的回答
Google Chrome form autofill and its yellow background
Override browser form-filling and input highlighting with HTML/CSS
// TODO: 待编辑
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset !important;
}
经过测试,这才是最终的答案
<script type="text/javascript">
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
$(window).load(function(){
$('input:-webkit-autofill').each(function(){
var text = $(this).val();
var name = $(this).attr('name');
$(this).after(this.outerHTML).remove();
$('input[name=' + name + ']').val(text);
});
});
}
</script>
将这段代码加到head里面,
Stack Overflow上的大神写的,亲测能用
3 回答2k 阅读✓ 已解决
3 回答1.7k 阅读✓ 已解决
3 回答988 阅读✓ 已解决
4 回答2.2k 阅读
3 回答1.1k 阅读✓ 已解决
2 回答1.1k 阅读✓ 已解决
1 回答1.5k 阅读✓ 已解决
修改:有辦法直接修改。
貌似不能覆蓋默認樣式,但是可以用別的樣式曲線達到目的。
效果:
第一個應用了自定義樣式,第二個作對照。
原先的思路:
屏蔽 Chrome 的功能,自己實現一個,和原生功能模仿得像一點。
好吧,其實你也可以自己繪製 input,將真正的 input 用 css 隱藏起來,就像這樣:
加載完畢檢測一下 input 有沒有被 chrome 填充,有的話,應用自定義樣式。
這個思路甚至可以更改光標的樣式和顏色,示例如下: