向本地存储添加一个栏以显示在收藏夹页面中:JQuery

时间:2017-03-29 18:23:56

标签: javascript jquery local-storage

我创建了一个应用程序,在json文件中搜索条形图并显示结果然后我点击每个结果并尝试使用本地存储区将它们添加到收藏页面有人可以帮忙吗?

//添加收藏夹

var barId = $('.thumbnail').attr("id");
$('favoritesbtn').on('click', function() {

  var bars = {
    id: $('.id').attr("id"),
    name: $('#name').text(),
    location: $('#location').text(),
    description: $('#description').text(),
    image: $('#image').attr('src'),
  };

  localStorage.setItem('bars-' + Id,

    JSON.stringify(bars));

  var retrievedObject = JSON.parse(localStorage.getItem('bars-' + id));
  console.log('retrievedObject: ', retrievedObject);
});

0 个答案:

没有答案