Firefox and IE's browsers each realize the function of input history, which can simplify the troubles during the input. However, sometimes the pop -down box pop -up box will block the display content of the page, and in some cases, there is no need to record the INPUT box. , Such as the Input box of the number query, the user will not query the same number multiple times, so there is no need to let the browser record.
MSIE customized the Input attribute AutoComplete, which is placed as an OFF
<input type = "text" autocomplete = "Off" id = "Number"/>
Using this method can shield MSIE, Firefox, Chrome, and Opera need to use another extension attribute disableAutocomplete
<input type = "text" disableAutocomplete id = "number"/>
The two extension attributes can be used at the same time, and the browser will automatically analyze according to its own characteristics.