我正在尝试获取键 1 的本地存储值,将其设置为选中的任何复选框的值,但我的 javascript 函数返回的值在本地存储中显示为 [object object]。任何帮助将不胜感激,在此先感谢您。
<html>
<head>
<script type="text/javascript">
function topic_1_status(){
var status = {
get_value: function(){
return this.value;
}
};
localStorage.setItem(1, status);
}
</script>
</head>
<body>
<div>Topic no.1 </div>
<form action="">
<input type="checkbox" value="learnt" onclick="topic_1_status()" /> Learnt
<input type="checkbox" value="memorised" onclick="topic_1_status()" /> Memorised
<input type="checkbox" value="understood" onclick="topic_1_status()" /> Understood
<input type="checkbox" value="unlearned" onclick="topic_1_status()" /> Unlearned
</body>
</html>