0

我有:
localStorage.xxx = JSON.stringify([["something","hello"],["something2","hello2"]]);
如何在 JSON 中添加一个新数组,xxx例如["something3","hello3"].

4

1 回答 1

2

你的意思是这样的:


var arr = JSON.parse( localStorage.xxx ) ;
arr.push( ["something3","hello3"] ) ;
localStorage.xxx  = JSON.stringify( arr ) ;
于 2012-04-06T09:41:21.907 回答