我一直在玩http://almende.github.com/chap-links-library/timeline.html,它允许用户在时间线上添加/编辑/删除事件。关闭或刷新浏览器会将其重置为预加载的数据源 - JSON、表格信息或 Google 电子表格。不会保存用户添加或更改的任何内容。
您如何使用户更改持久化?
我之前使用 HTML5 localStorage 来保存文本、复选框和选择框条目等,但使用此时间轴,唯一的条目是:
div id="我的时间线"
它有一个与之关联的脚本:
// Instantiate our timeline object.
timeline = new links.Timeline(document.getElementById('mytimeline'));
这是对构建时间线容器的 JS 的引用。
有什么想法、例子或指示吗?
谢谢。
更新:这是我到目前为止所拥有的:
//Check to see if localStorage is supported
var db = getLocalStorage() || alert("Local Storage Not supported in this browser. Try updating to the latest Firefox, Chrome or Safari browsers.");
function getLocalStorage() {
try {
if(window.localStorage ) return window.localStorage;
}
catch (e)
{
return undefined;
}
}
//Store Timeline Data to localStorage
function storeTimelineData(){
var data=timeline.getData();
localStorage.setItem('mytimeline', JSON.stringify(data));
var storedData=JSON.parse( localStorage.getItem('myTimeline') );
// clear storage
function clearLocal() {
clear: localStorage.clear();
return false;
}
我还进行了这些更改 - body onload="storedData()" 尝试加载 localStorage 保存的值并更改 div id="mytimeline" onmouseup="storeTimelineData()" 以在对时间线进行更改时存储值。
对时间线的更改保存在 localStorage 中,我可以在控制台中看到键/值的这些更改。但是,当我刷新浏览器时,这些并没有被加载到 mytimeline 中。我错过了什么?
谢谢。