我想用localStorage存一下一堆li的内容 但是不管怎么存取出来的值有会有问题
<div id="dd1" class="parent-box">
<button class="editOrder ddd" data-for="#dd1">编辑顺序</button>
<button id="save" onclick="save1()">保存</button>
<ul class="list ee">
<li>01<p>1</p></li>
<li>02<p>1</p></li>
<li>03<p>1</p></li>
<li>04<p>1</p></li>
<li>05<p>1</p></li>
<li>06<p>1</p></li>
<li>07<p>1</p></li>
<li>08<p>1</p></li>
<li>09<p>1</p></li>
<li>10<p>1</p></li>
</ul>
</div>
<script>
function save1(){
var save = document.getElementById("dd1").querySelectorAll("li")
save = Array.prototype.slice.call(save)
for(var i=0;i<save.length;i++){
for(var j = i + 1;j<save.length;j++){
var savei = parseInt(save[i].getAttribute("data-top"))
var savej = parseInt(save[j].getAttribute("data-top"))
if(savei>savej){
var tmp = save[i];
save[i] = save[j];
save[j] = tmp;
console.log(savej)
}
}
}
// console.log(JSON.stringify(save))
localStorage.setItem('key',save);
}
//这个是存储 data-top是我排序用的 不用理会
var read=localStorage.getItem('key');
document.getElementById("save").innerHTML=read
//这个是取值
</script>
但是这么取的话会返回
[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement],[object HTMLLIElement]
如果用
localStorage.setItem('key',JSON.stringify(save));
var read=JSON.parse(localStorage.getItem('key'));
返回的就是
[object Object],......
这个应该怎么存和取
慕姐8265434
POPMUISE
相关分类