我正在尝试使用以下代码将数组存储在localstorage中:

var tempval = [];
tempval['key'] = 1;
localStorage.setItem("Message", JSON.stringify(tempval));


但在本地存储中,它仅显示[]

那么如何存储它以及我在哪里出错呢?

最佳答案

这是您的代码:-

var tempval ={};
tempval.key = 1;
localStorage.setItem("Message", JSON.stringify(tempval));

10-07 14:44