我想使用浏览器缓存来存储信息。目前,我正在使用 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' 中打印这些信息,并且能够存储两个以上的记录并且不会被替换。