使用
name=“email”
name=“text”
name=“password”
分别尝试
使用 autocomplete=“new-password”
动态切换 readonly
setTimeout(() => {
this.readonly = false;
}, 1000);
或者
<input type="password" readonly onfocus="this.removeAttribute('readonly');"/>
使用
name=“email”
name=“text”
name=“password”
分别尝试
使用 autocomplete=“new-password”
动态切换 readonly
setTimeout(() => {
this.readonly = false;
}, 1000);
或者
<input type="password" readonly onfocus="this.removeAttribute('readonly');"/>