我想为 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);
}
});
我需要向 localStorage["homeNews"] 添加一个时间戳,并在 5 分钟后通过检查当前时间和我的 localStorage 的时间戳将其删除。
小提琴在这里:http: //jsfiddle.net/Rn4NC/