How do you implement the automatic saving function in the middle of the HTML input form?

Asked 1 years ago, Updated 1 years ago, 95 views

About the ability to save automatically in the middle of the HTML input form
·It seems to be applied to the stack overflow form, but how do you implement it?
·Completed on the client side?
·Send to server? Save to database?
·Which one is fine? Are there many ways to do it?

javascript php html jquery

2022-09-30 21:40

1 Answers

The stack overflow form data is taken over even if you change browsers or terminals, so the server is probably saving the data.

You can also use cookies to save things like "Omit Login ID from next time" which are common.
If you want to save it dynamically in case you close your browser unexpectedly, you may need to combine it with Javascript (Jquery) and so on.

I think the implementation method will change depending on where you want to store the data.


2022-09-30 21:40

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.