When the front end writes the login interface, how can it be compatible with different browsers to remember account numbers and passwords?

now the project at hand requires IE, FF and Chrome browsers to remember account numbers and automatically save passwords after checking the box.
has been implemented on Chrome, but neither FF nor IE can remember the account number and save the password.
how to solve the compatibility problem of login page for different browsers?

Mar.31,2021

try localStorage to deal with


generally, the check box of login page is "remember login status", not "remember password"
remember that login status is recorded to the login status in cookie the next time cookie, is opened, instead of automatically filling in account password


LocalStorage
sessionStorage maintains a separate storage area for each given source. This storage area is available during the page session (the browser is open, including page reloading and recovery)
localStorage is the same as above, but the reopen data still exists after the browser is closed.

Menu