浏览器记住密码的自动填充Input问题完美解决方案

1、input 前from和input占位隐藏

                        <form style="width:0;height:0;display:none;">
                            <input type="password" />
                        </form>
                        <input type="password" style="width:0;height:0;display:none;" />

2、input  autocomplete="new-password"

<Input type='password'  autocomplete="new-password"/>

猜你喜欢

转载自www.cnblogs.com/yinrq/p/11528543.html