如下图,部分浏览器弹出是否记住密码,点击记住。退出后,再次登录,输入用户名后,点击密码输入框时,会出现一个白框。没有查明这个白框的原因,只好直接禁止此功能。但是网上的方案虽多,居然都无法奏效。
红米note4X默认浏览器
var inP: any = Laya.Browser.createElement("input");
inP.style = "display:none";
inP.type = "password";
//这里autocomplete属性,用off或false都不行,只能用new-password
inP.autocomplete = "new-password";
var inputContainer = Laya.Input["inputContainer"];
inputContainer.appendChild(inP);
注意这个在iphone6上有问题,会显示一个输入框