jQuery获取cookie值及删除cookie用法实例

发布时间:2024-11-19 16:32

使用浏览器内置的Cookie管理功能,清除购物车历史记录以获取更多优惠券 #生活技巧# #节省生活成本# #购物优惠技巧# #在线购物比价工具#

$.extend({

  cookieHelper: function(name, value, options) {

    if (typeof value != 'undefined') {

      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();

      }

      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 {

      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]);

          if (cookie.substring(0, name.length + 1) == (name + '=')) {

            cookieValue = decodeURIComponent(cookie.substring(name.length + 1));

            break;

          }

        }

      }

      return cookieValue;

    }

  }

});

网址:jQuery获取cookie值及删除cookie用法实例 https://www.yuejiaxmz.com/news/view/138488

相关内容

js获取属性的值
瑞幸咖啡
美沃奇PACKOUT堆叠式三抽屉工具箱
美沃奇PACKOUT堆叠式两抽屉工具箱
【项目】在线教育平台项目总结
电子设备及软件使用技巧(通用篇)
ddshop 项目安装与使用教程
安全
insMind
服务中心查询及预约

随便看看