使用jquery,假设我有一个数组:
requestedpage.html
var listofinput = "Lionel Messi,30,Argentina";
如何在另一个页面上检索此数组中的每个项目?假设将其显示为span标记内的文本:
anotherpage.html
Name<span></span>
Age<span></span>
Country<span></span>
答案 0 :(得分:0)
您可以使用localStorage
:
localStorage.listofinput = listofinput;
然后使用localStorage.listofinput
检索它:
console.log(localStorage.listofinput);