保存与本地存储格的内容,并显示在另一页(Save content of div with local

2019-06-27 12:12发布

我试图抓住一个内容<div>页面加载一个页面上,并保存到localStorage的。

当有人再次访问了首页,我想内容的这个div显示。

虽然我能得到的功能与使用表单输入字段的工作和提交,我不能找到一个办法让只使用内容和页面加载这个工作。

任何帮助表示赞赏!

非常感谢

Answer 1:

没有看到你的标记和代码很难知道可能是什么问题,你应该能够做到像下面

在第一页上:

$(function() {
  localStorage["myKey"] = JSON.stringify($("#divWithContents").html());
});

在网页上你想要的内容显示:

$(function() {
   if (localStorage["myKey"] != null) {
      var contentsOfOldDiv = JSON.parse(localStorage["myKey"]);    
      $("divWhereIwantStuffDisplayed").html(contentsOfOldDiv);
     } 
});


文章来源: Save content of div with local storage, and display on another page