Google browser page input disable automatic filling

Copyright: Hello, Bug https://blog.csdn.net/AdminPwd/article/details/90670120

Google usually used by the browser, on the login page is like a password to remember, easy to debug, but when you add a page or modify the page, headache occurs, ah, Google browser will be automatically assigned, it is a headache

Just step
add autocomplete = "new-password"
such as

			        <!--   修改前             -->
                <input type="text" name="pwd" />
                    <!--   修改后             -->
                <input type="text" autocomplete="new-password" name="pwd" />

Guess you like

Origin blog.csdn.net/AdminPwd/article/details/90670120