使用TTL删除基于LocalStorage的时间戳

时间:2013-09-17 14:39:05

标签: local-storage ttl

真的需要你的帮助。我想在localStorage中有一个内容计时器。

例如,我有一个动态更新的DIV

<div id="news"><p>test</p></div>

并设法使用此代码将其作为html块添加到localStorage:

$(function() {
 localStorage["homeNews"] = JSON.stringify($("#news").html());
});
$(function() {
 if (localStorage["homeNews"] != null) {
   var contentsOfNews = JSON.parse(localStorage["homeNews"]);    
  $("#news").html(contentsOfNews);
} 
});

有一个例子,但由于某些原因它似乎不起作用: http://jsfiddle.net/Rn4NC/4/

0 个答案:

没有答案