How to save data from a form with HTML5 Local Storage?

前端 未结 5 2056
我在风中等你
我在风中等你 2020-11-28 08:23

I have a form that makes logging into a website but not in mine and I want them to be saved form data in my web with HTML5 local storage. But not how. Any idea? My form is t

5条回答
  •  南笙
    南笙 (楼主)
    2020-11-28 08:52

    To save the data you have to use localStorage.setItem method and to get the data you have to use localStorage.getItem method.

提交回复
热议问题