jquery 获取 cookie值代码

jquery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options = $.extend({}, options); // clone object since it's unexpected behavior if the expired property were changed
            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;
    }
};

//使用方法

$.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: '111cn.net', secure: true });

时间: 2024-10-06 02:42:16

jquery 获取 cookie值代码的相关文章

js /jquery 获取cookie值代码

js /jquery 获取cookie值代码 */ function getcookie(name, dc){       var cname = name + "=";     if (dc.length > 0){           var begin = dc.indexof(cname);         if (begin != -1){               begin += cname.length;               end = dc.index

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

本文实例讲述了jQuery获取cookie值及删除cookie用法.分享给大家供大家参考,具体如下: cookie在jquery中有指定的cookie操作类,这里先来介绍在使用cookie操作类时的一些问题,然后介绍正确的使用方法. 使用JQuery操作cookie时 发生取的值不正确的问题: 结果发现cookie有四个不同的属性: 名称,内容,域,路径 $.cookie('the_cookie'); // 读取 cookie $.cookie('the_cookie', 'the_value'

jquery 获取input值代码

方法很简单,我们来看看如何用jquery 获取input值代码吧. 取值:val = $("#id")[0].value; 赋值: $("#id")[0].value = "new value"; 或者$("#id").val("new value"); 或者这样也可以:val = $("#id").attr("value");

jquery获取radio值实例_jquery

本文实例讲述了jquery获取radio值的方法,分享给大家供大家参考.具体如下: 单选组radio: 复制代码 代码如下: $("input[@type=radio][@checked]").val(); 单选组 radio: 复制代码 代码如下: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项 获取一组radio被选中项的值 复制代码 代码如下: var ite

textfield-Ext.net Jquery获取TextField值

问题描述 Ext.net Jquery获取TextField值 @( X.Window() .Title("这是添加页面") .Width(400) .Height(400) .Layout("FitLayout") .AutoShow(true) .Items( X.FormPanel() .ID("PanelForm") .BodyPadding(5) .Items( X.TextField() .ID("txtName"

求一段能获取COOKIE的代码!

问题描述 求一段能获取COOKIE的代码!COOKIE格式如下:Cookie:PNT_=UserID=3&UserName=123&Password=202cb962ac59075b964b07152d234b70&expires=30;ASPSESSIONIDAARAQASC=DNBIKFOCAMHFABKAIPCLNOHH 解决方案 解决方案二:if(request.cookie[""]!=null){stringID=request.cookie[&quo

js 删除所有cookie值代码

cookie 是存储于访问者的计算机中的变量.每当同一台计算机通过浏览器请求某个页面时,就会发送这个 cookie.你可以使用 javascript 来创建和取回 cookie 的值. 下面来看款删除所有cookie值代码 function clearcookie(){ var keys=document.cookie.match(/[^ =;]+(?==)/g); if (keys) { for (var i = keys.length; i--;) document.cookie=keys[

js设置与读取cookie值代码

js设置与读取cookie值代码 <script language="javascript教程">  function setCookie(name, value)  //cookies设置 {  var argv = setCookie.arguments;  var argc = setCookie.arguments.length;  var expires = (argc > 2) ? argv[2] : null;  if(expires!=null)  {

一款js 读取cookie 值代码

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-