如何更新HTML5 Web应用程序的内容

时间:2012-04-03 16:28:12

标签: database storage html5

我打算根据内容编写一个HTML5应用程序 我打算将内容存储到本地数据库中 现在,我该如何安排更新?

1 个答案:

答案 0 :(得分:1)

有一个很好的html 5演示文稿here

这是一个例子:

// use localStorage for persistent storage
// use sessionStorage for per tab storage
saveButton.addEventListener('click', function () {
  window.localStorage.setItem('value', area.value);
  window.localStorage.setItem('timestamp', (new Date()).getTime());
}, false);
textarea.value = window.localStorage.getItem('value');