JavaScript 下的cookie基本操作

<html>

<head>

<script type="text/javascript">

function getCookie(c_name)   //   提取 cookies中 c_name=OOXX 中的OOXX 无则返回""

{

   if (document.cookie.length>0)

    {

      c_start=document.cookie.indexOf(c_name + "=")        //indexOf 相当于 strchr

      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)        //   c_name=escape(value);GMT时间

{

var exdate=new Date()

 exdate.setDate(exdate.getDate()+expiredays)       //  escape 是为了能方便存入流的特殊符号转换函数

    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)

          }

        }

}

function clearCookie()    //自己加的清除cookies 试了直接 document.cookie="" 无效…有更好的方法么?

{

  try{

     document.cookie="username="

     }

  catch(err)

 {

    txt = "error\n\n"

        confirm(txt)

 }

 

}

</script>

</head>

<body onLoad="checkCookie()">

<input type="button" onclick="clearCookie()" value="清除Cookie" />

</body>

</html>

此条目发表在未分类分类目录。将固定链接加入收藏夹。

发表评论

邮箱地址不会被公开。 必填项已用*标注