0

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

4

1 回答 1

0

请改用 localStorage。Chrome 和其他人也有同步存储在所有用户设备上。

于 2013-10-13T16:38:59.290 回答