Note: After AutoComplete = "off" is added to the form in web development, ie and FF do not prompt to save the password, but when logging on to the system using Chrome browser, the prompt for automatically saving the password is displayed. In terms of security, you need to disable the browser function to improve system security.
Most browsers determine the password field based on the type = "password" of the form field. In this case, you can use the "dynamically set the password field" method:
<Input type = "text" name = "password" onfocus = "This. type = 'Password'" AutoComplete = "off"/>
Explanation: The password domain is changed only when the focus is obtained in this document box.
This method is simple and effective. you can disable the prompt box for saving the password in Chrome browser.
Note: onfocus = "this. type = 'Password' "cannot be identified on IE, so compatibility needs to be considered. You can handle this issue during webpage initialization. for IE browsers, when type = "password" AutoComplete = "off" is used on the input tag, the browser will not prompt you to remember the password.
How to disable prompt for auto saving password in chrome