สำหรับการเติมข้อความอัตโนมัติคุณสามารถใช้:
<form autocomplete="off">
เกี่ยวกับปัญหาการระบายสี:
จากภาพหน้าจอของคุณฉันจะเห็นว่า webkit สร้างสไตล์ดังต่อไปนี้:
input:-webkit-autofill {
background-color: #FAFFBD !important;
}
1) เนื่องจาก # id-styles สำคัญยิ่งกว่า. class styles ดังต่อไปนี้อาจใช้งานได้:
#inputId:-webkit-autofill {
background-color: white !important;
}
2) หากวิธีนี้ใช้ไม่ได้ผลคุณสามารถลองกำหนดสไตล์ผ่านทางโปรแกรมจาวาสคริปต์
$("input[type='text']").bind('focus', function() {
$(this).css('background-color', 'white');
});
3) ถ้าไม่ได้ผลคุณจะต้อง :-)พิจารณาเรื่องนี้: สิ่งนี้จะไม่ซ่อนสีเหลือง แต่จะทำให้ข้อความอ่านได้อีกครั้ง
input:-webkit-autofill {
color: #2a2a2a !important;
}
4) โซลูชัน css / javascript:
CSS:
input:focus {
background-position: 0 0;
}
และจาวาสคริปต์ต่อไปนี้จะต้องมีการเรียกใช้ onload:
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)
}
}
เช่น:
<body onload="loadPage();">
โชคดี :-)
5) หากไม่มีงานใด ๆ ข้างต้นลองลบองค์ประกอบการป้อนข้อมูลให้ทำการโคลนนิ่งจากนั้นวางองค์ประกอบที่โคลนกลับมาที่หน้า (ใช้งานได้กับ 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) จากที่นี่ :
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);
});
});
}