tizen如何将复选框的状态保存到本地存储的代码
此代码可以将复选框的状态保存到本地存储。所以当重新启动应用程序时,用户可以看到一个已保存的值。<input type="checkbox" id="checkbox1">checkbox</input>
<button type="button" onClick="save()">save</button>
function save() {
var checkbox = document.getElementById("checkbox1");
localStorage.setItem("checkbox1", checkbox.checked);
}
//for loading
var checked = JSON.parse(localStorage.getItem("checkbox1"));
document.getElementById("checkbox1").checked = checked;
页:
[1]