How to pass javascript object from one page to other

前端 未结 7 1597
时光说笑
时光说笑 2020-11-27 07:27

I want to pass javascript object from one page to other page so anyone can tell me how to do it?

Is that possible to do so using jQuery?

相关标签:
7条回答
  • 2020-11-27 07:49

    If your application uses sessions, you could serialize it (as per other answers) then POST it to the server where it is stored in a session variable. In the next page, you retrieve it from the session variable.

    0 讨论(0)
提交回复
热议问题