zoukankan      html  css  js  c++  java
  • 网易客户端cookie操作

    function setCookie(name, value, isForever) {
     document.cookie = name + "=" + escape(value) + ";domain=mail.163.com" + (isForever?";expires="+  (new Date(2099,12,31)).toGMTString():"");
    }

    function getCookie(name) {
       var search = name + "="
       if(document.cookie.length > 0) {
          offset = document.cookie.indexOf(search)
          if(offset != -1) {
             offset += search.length
             end = document.cookie.indexOf(";", offset)
             if(end == -1) end = document.cookie.length
             return unescape(document.cookie.substring(offset, end))
          }
          else return ""
       }
    }

  • 相关阅读:
    HDU 4005 The war
    #undef
    [转载] #define new DEBUG_NEW
    [转载]常用正则表达式
    [百科]
    [转载]
    [转载]
    [转载]
    [百科]
    [转载]VC6中的文件后缀
  • 原文地址:https://www.cnblogs.com/lein317/p/5067658.html
Copyright © 2011-2022 走看看