This article mainly introduces how to disable the browser input box and automatically complete compatibility with mainstream browsers such as IE, ff, and chrome. For more information, see. Hope to help you
The Firefox and IE browsers each implement the input history function, which simplifies the input troubles. However, sometimes the pop-up drop-down box blocks the content displayed on the page, in some cases, you do not need to record the input box. For example, if you do not query the same number multiple times, you do not need to make browser records.
MSIE customizes the extended attribute AutoComplete of input and sets it to off.
<Input type = "text" AutoComplete = "off" id = "Number"/>
This method can be used to shield MSIE, Firefox, chrome, and opera from using another extended attribute disableautocomplete.
<Input type = "text" disableautocomplete id = "Number"/>
The two extended attributes can be used at the same time. The browser automatically parses the attributes based on its own characteristics.
Close the browser input box and automatically complete compatibility with mainstream browsers such as IE, ff, and chrome.