1
所以我只是閱讀Nettut關於HTML5本地存儲的視頻。但是由於某種原因,我無法讓它在我的電腦上運行。 (Ubuntu 10.04 Namoroka 3.6.9pre或Google Chrome 5)。我用這段JavaScript代碼:如何正確使用HTML5 localStorage?
$(function() {
var edit = document.getElementById('edit');
$(edit).blur(
function() {
localStorage.setItem('todoData', this);
}
);
if (localStorage.getItem('todoData')) {
edit = localStorage.getItem('todoData');
}
});
然後我有一個與<ul contenteditable="true" id="edit">
一個<li>
裏面。
當然,我有jquery鏈接。
我在這裏做錯了什麼嗎?