解决360浏览器自动填充的屎黄色背景的问题
1 if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) { 2 $(window).load(function () { 3 $('input:-webkit-autofill').each(function () { 4 var text = $(this).val(); var name = $(this).attr('name'); 5 $(this).after(this.outerHTML).remove(); 6 $('input[name=' + name + ']').val(text); 7 }); 8 }); 9 }
自动填充原理,找到input标签type类型为password的对象,识别该对象为密码框,查找密码框上面的第一个type为text的input对象为登录名框。
!!!转发请注明出处和作者名称。
!!!转发请注明出处和作者名称。
!!!转发请注明出处和作者名称。
重要的事,说三遍。