如何在cookie中存储数组并将其检索回另一页面

时间:2017-10-24 02:07:09

标签: jquery

使用jquery,假设我有一个数组:

requestedpage.html

var listofinput = "Lionel Messi,30,Argentina";

如何在另一个页面上检索此数组中的每个项目?假设将其显示为span标记内的文本:

anotherpage.html

Name<span></span>
Age<span></span>
Country<span></span>

1 个答案:

答案 0 :(得分:0)

您可以使用localStorage

localStorage.listofinput = listofinput;

然后使用localStorage.listofinput检索它:

console.log(localStorage.listofinput);