Home > Article > Web Front-end > How to share data between web pages without a server_html/css_WEB-ITnose
I used html jQuery to do it. I need to share data between several pages. I used $.cookie, but it doesn’t seem to work. Can someone please solve it?
If several pages are in the same domain name and in the same process, it is OK. However, COOKIES cannot be shared between multiple processes and different domain names
You will generally use server technology SESSION CACHE and other methods to achieve such needs
url parameters, html5 client storage, cookies