在页面放一个空input标签 设置透明度隐藏,不能设置display:none, 因为会无效
<input type='password' autocomplete="new-password" style="background-color: #FFFFFF!important;opacity: 0" readonly onfocus="this.removeAttribute('readonly');" onblur="this.setAttribute('readonly',true);" />
网友评论