How to get the value saved in input autocomplete effect

The

input tag has an autocomplete effect, so where are the entered values saved? How can I get it?

Mar.04,2021

this is usually the local cache on the browser side. For example, autocomplete in Baidu's search box is prompted based on the history you have searched. The historical data is saved in the

on the browser side.
Menu