var arrList= ['北京'、'上海'、'广州'、'深圳'、'西安']
存:localStorage.setItem('arrList',JSON.stringify(arrList));
取: arrList= JSON.parse(localStorage.getItem('arrList'));
删:localStorage.removeItem('arrList')
var arrList= ['北京'、'上海'、'广州'、'深圳'、'西安']
存:localStorage.setItem('arrList',JSON.stringify(arrList));
取: arrList= JSON.parse(localStorage.getItem('arrList'));
删:localStorage.removeItem('arrList')