本文介绍了Chrome隐藏背景图像与自动填充的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在进行基本注册和登录表单工作。在我的输入字段中,我包含背景图像和白色。铬自动填充是用浅黄色替换我的背景图像和颜色。为此我搜索并找出...
Hi guys Im working on basic signup and signin forms.In my input fields I consist of background image and white color.In chrome autofill was replacing my background image and color with pale yellow color.For this I have searched and found out few lines of code....
input:-webkit-autofill {
background-color: #FAFFBD !important;
}
这使我的backgroundcolor显示...但无法显示背景图像在输入字段中。我可以在chrome中自动填充时获取几位代码来显示背景图片。
This was making my backgroundcolor to display...but Unable to show the backgroundimage in input field.Can I get few bits of code to show the background image when autofill in chrome.
input#email {
background: url("~mail.png") no-repeat scroll 16px 11px #FFFFFF;
background-size: 20px 20px;
z-index: 999;
}
推荐答案
Try the change with jQuery:
if ($.browser.webkit) {
//$('input[name="password"]').attr('autocomplete', 'off');
$('input[name="password"]').attr('background-image', 'src');
}
这篇关于Chrome隐藏背景图像与自动填充的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!