English
<!-- Add the following code to the <body> area --> Sample 1: Normal situation, that is, the default situation, is turned on during AutoComplete. See: IE5-Tools-Content-Autocomplete Options. 〈form〉 〈input type = text name = Email〉 〈/form〉 Sample 2: Sometimes we don’t need AutoComplete, for example, the user needs to enter the password again instead of automatically completing it. Just set the autocomplete attribute of the form element to off. 〈form〉 〈input type = password name = Password autocomplete = "off"〉 〈/form〉 Sample 3: So, what if all form elements do not want to use the autocomplete function? See the following methods: : 〈form autocomplete = "off"〉 〈input type="text" name="textfield"〉 〈/form〉