中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jQuery.cookie.js怎么實現記錄最近瀏覽過的商品功能

發布時間:2021-06-18 14:27:41 來源:億速云 閱讀:130 作者:小新 欄目:web開發

這篇文章主要介紹jQuery.cookie.js怎么實現記錄最近瀏覽過的商品功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體如下:

1、jquery.cookie.js

/*jquery.cookie.js */
jquery.cookie = function(name, value, options) {
  if (typeof value != 'undefined') { // name and value given, set cookie
    options = options || {};
    if (value === null) {
      value = '';
      options.expires = -1;
    }
    var expires = '';
    if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
      var date;
      if (typeof options.expires == 'number') {
        date = new Date();
        date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
      } else {
        date = options.expires;
      }
      expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
    }
    var path = options.path ? '; path=' + options.path : '';
    var domain = options.domain ? '; domain=' + options.domain : '';
    var secure = options.secure ? '; secure' : '';
    document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
  } else { // only name given, get cookie
    var cookieValue = null;
    if (document.cookie && document.cookie != '') {
      var cookies = document.cookie.split(';');
      for (var i = 0; i < cookies.length; i++) {
        var cookie = jQuery.trim(cookies[i]);
        // Does this cookie string begin with the name we want?
        if (cookie.substring(0, name.length + 1) == (name + '=')) {
          cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
          break;
        }
      }
    }
    return cookieValue;
  }
};

2、實現最近瀏覽過的商品

var cookieName = "PrdIDCookie";  //cookie名稱
var nid;             //最新訪問的商品ID
var N = 5;            //設置cookie保存的瀏覽記錄的條數
//記錄最近瀏覽過的商品
function HistoryRecord() {
  var historyp;
  nid = $("#PrdID").val();
  if (nid == null || nid == "") {
    return;
  }
  //判斷是否存在cookie
  if ($.cookie(cookieName) == null) //cookie 不存在
  {
    //創建新的cookie,保存瀏覽記錄
    $.cookie(cookieName, nid, { expires: 7, path: '/' });
  }
  else //cookies已經存在
  {
    //獲取瀏覽過的商品編號ID
    historyp = $.cookie(cookieName);
  };
  //分解字符串為數組
  var pArray = historyp.split(',');
  //最新訪問的商品編號放置載最前面
  historyp = nid;
  //判斷是該商品編號是否存在于最近訪問的記錄里面
  var count = 0;
  for (var i = 0; i < pArray.length; i++) {
    if (pArray[i] != nid) {
      historyp = historyp + "," + pArray[i];
      count++;
      if (count == N - 1) {
        break;
      }
    }
  }
  //修改cookie的值
  $.cookie(cookieName, historyp);
}
//獲取最近瀏覽過的商品
function BindHistory() {
  var historyp = "";
  if ($.cookie(cookieName) != null) //cookie 不存在
  {
    //獲取瀏覽過的商品ID
    historyp = $.cookie(cookieName);
  }
  if (historyp == null && historyp == "") {
    return;
  }
  else
  {
    var prdIDs = [];  //將商品ID以列表或數據的方式保存
    var pArray = historyp.split(',');
    for (var i = 0; i < pArray.length; i++) {
      if (pArray[i] != "") {
        //alert(pArray[i]);
        prdIDs.push(pArray[i]);
      }
    }
    //--->請求商品詳細詳細...
  }
}

以上是“jQuery.cookie.js怎么實現記錄最近瀏覽過的商品功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莫力| 格尔木市| 阿拉善右旗| 宁强县| 中超| 固原市| 宁明县| 三亚市| 迁安市| 榆林市| 南雄市| 尤溪县| 民和| 天门市| 江阴市| 浪卡子县| 河源市| 兴化市| 平武县| 黎城县| 双牌县| 彝良县| 肇州县| 宁津县| 都匀市| 股票| 司法| 奈曼旗| 德庆县| 奉新县| 乐昌市| 灵丘县| 隆化县| 甘泉县| 封开县| 绥化市| 台东市| 旺苍县| 黄山市| 犍为县| 根河市|