localStorage存储数组以及取数组方法。

var weekArray = ['周一'、'周二'、'周三'、'周四'、'周五']
存:localStorage.setItem('weekDay',JSON.stringify(weekArray));
取: weekArray = JSON.parse(localStorage.getItem('weekDay'));

转载于:https://www.cnblogs.com/wjunwei/p/6491425.html

你可能感兴趣的:(localStorage存储数组以及取数组方法。)