2016-08-02 61 views

回答

2
$('#add_new_criteria').on('click',function(){ 
    $('#cyc_append').html(': Add new another criteria'); 
    localStorage.setItem('textKey', $('#cyc_append').html()); 

}); 

第一個參數是您以後將使用重新獲取數據 出標識符。第二個是你想存儲的數據。

瞭解更多關於localStorage

+0

如果你想只有最新值,那麼使用靜態硬編碼值作爲你的textKey。如果你想有'歷史',那麼你的textKey可以是你可以像這樣生成的時間戳 - new Date()。getTime(); –

+0

@MindaugasJačionis是的,可以做到維護所有html集的歷史記錄 –

相關問題