jQuery .sortableと.appendを使用して、HTMLリストを許可しています。私はローカルのHTMLストレージを利用してリストを保存しようとしています。リストは保存されていません。HTMLストレージを使用したHTMLリストの追加、ソート、保存、取得
HTML
<ul id="sortable">
</ul>
<form id="append" action="">
<input type="text" id="appendvalue">
<input type="submit" value="Append">
</form>
jQueryの
$(function() {
$("#sortable").sortable();
$("#sortable").disableSelection();
});
$("#append").submit(function(event) {
$("#sortable").append("<li id=\"storevalue\" class=\"ui-state\">" +
$('#appendvalue').val() + "</li>");
event.preventDefault();
});
// Store
localStorage.store_data = ("key",
document.getElementById("storevalue").HTML);
// Retrieve
document.getElementById("storevalue").HTML = localStorage.store_data;
私のソリューションが動作するかどうか教えてください。 –