• javascript 中写cookie


    今天上班的时候,同事东东发了一个javascript的代码过来,说是解释一下,我看了看,挺好玩的。

    其实,很简单 就是在js中写cookie。

    OK。贴上代码。

    function getCookie(c_name)
    {
    if (document.cookie.length>0)
    {
    c_start
    =document.cookie.indexOf(c_name + "=")
    if (c_start!=-1)
    {
    c_start
    =c_start + c_name.length+1
    c_end
    =document.cookie.indexOf(";",c_start)
    if (c_end==-1) c_end=document.cookie.length
    return unescape(document.cookie.substring(c_start,c_end))
    }
    }
    return ""
    }

    function setCookie(c_name,value,expiredays)
    {
    var exdate=new Date()
    exdate.setDate(exdate.getDate()
    +expiredays)
    document.cookie
    =c_name+ "=" +escape(value)+
    ((expiredays
    ==null) ? "" : "; expires="+exdate.toGMTString())
    }

    function checkCookie()
    {
    username
    =getCookie('username')
    if (username!=null && username!="")
    {alert(
    'Welcome again '+username+'!')}
    else
    {
    username
    =prompt('Please enter your name:',"")
    if (username!=null && username!="")
    {
    setCookie(
    'username',username,365)
    }
    }
    }
    </script>
    </head>

    上面这段代码的意思是通过 js来设置浏览器的cookie。相信大家对cookie都不陌生吧,指某些网站为了辨别用户身份、进行session跟踪而储存在用户本地终端上的数据(通常经过加密)(百科上的 呵呵。)。总之,我们现在很常用,但是我们平时好像都是在aspx里面进行创建操作,很少在js里面。所以 今天看到这个,觉得这个有点新奇。

    不解释。不难。

    enjoy you work...everybody...

  • 相关阅读:
    SICP学习笔记 第二章 (2.3)
    SICP学习笔记 第二章 (2.4)
    SICP学习笔记 第二章 (2.2)(上)
    SICP学习笔记 第一章 (1.3)
    SICP学习笔记 第二章 (2.1)
    sql server 获取服务器中数据库的大小
    vss File for <file> (<physical file>) Was Not Found
    Linq 中的获取最大值得记录
    silverlight 报错超时
    asp 中的getChunk(img_size)
  • 原文地址:https://www.cnblogs.com/damonlan/p/2116332.html
Copyright © 2020-2023  润新知