第1871天:html5 本地存储写入读取json,办公室健身(36)

星期四 少云 26~37℃

html5 本地存储写入读取json

var data = {
    intro: ‘test’,
    arr: []
};

// 写入(把json转成字符串)
localStorage.setItem(‘my_storage’, JSON.stringify(data));

// 读取(把json字符串解析成json)
var json = JSON.parse(localStorage.getItem(‘my_storage’));
alert(json.intro);


办公室健身(36)

俯卧撑,下午 60 个。

RSS

上一篇:

下一篇:

发表评论

电子邮件地址不会被公开。 必填项已用*标注