我想使用浏览器缓存来存储信息。目前,我正在使用Locache库,但我是新手。
到目前为止我有这个代码:
$ ('. countd'). click (function () {
himg var = $ ('# imgoferta'). attr ('src');
hnombre var = $ ('# nomoferta'). html ();
locache.set ("history", { 'himg' [himg], 'hnombre' [hnombre] })
显示结果:
console.log (locache.get ("history"));
Object {himg: Array[1], hnombre: Array[1]}
到目前为止,这么好。 我喜欢在html'li'中打印这些信息,并且能够存储两个以上的记录而不是替换。
答案 0 :(得分:0)
请改用localStorage。 Chrome和其他人也有syncStorage,可以在所有用户设备上同步。