để tự động hoàn thành, bạn có thể sử dụng:
<form autocomplete="off">
liên quan đến vấn đề tô màu:
từ ảnh chụp màn hình của bạn, tôi có thể thấy rằng webkit tạo kiểu sau:
input:-webkit-autofill {
background-color: #FAFFBD !important;
}
1) vì kiểu # id thậm chí còn quan trọng hơn kiểu. Class, những điều sau đây có thể hoạt động:
#inputId:-webkit-autofill {
background-color: white !important;
}
2) nếu điều đó không hiệu quả, bạn có thể thử đặt kiểu thông qua javascript theo lập trình
$("input[type='text']").bind('focus', function() {
$(this).css('background-color', 'white');
});
3) nếu điều đó không hiệu quả, bạn sẽ phải chịu số phận :-) hãy xem xét điều này: điều này sẽ không ẩn màu vàng, nhưng sẽ làm cho văn bản có thể đọc lại được.
input:-webkit-autofill {
color: #2a2a2a !important;
}
4) một giải pháp css / javascript:
css:
input:focus {
background-position: 0 0;
}
và javascript sau phải được chạy khi tải:
function loadPage()
{
if (document.login)//if the form login exists, focus:
{
document.login.name.focus();//the username input
document.login.pass.focus();//the password input
document.login.login.focus();//the login button (submitbutton)
}
}
ví dụ:
<body onload="loadPage();">
chúc may mắn :-)
5) Nếu không có công việc nào ở trên thử xóa các phần tử đầu vào, sao chép chúng, sau đó đặt các phần tử được sao chép lại trên trang (hoạt động trên Safari 6.0.3):
<script>
function loadPage(){
var e = document.getElementById('id_email');
var ep = e.parentNode;
ep.removeChild(e);
var e2 = e.cloneNode();
ep.appendChild(e2);
var p = document.getElementById('id_password');
var pp = p.parentNode;
pp.removeChild(p);
var p2 = p.cloneNode();
pp.appendChild(p2);
}
document.body.onload = loadPage;
</script>
6) Từ đây :
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);
});
});
}