zoukankan      html  css  js  c++  java
  • [转] javascript cookies 存、取、删除实例

    <script type=”text/javascript”>
    function SetCookie(name,value,expire) {
    var exp = new Date();
    exp.setTime(exp.getTime() + expire);
    document.cookie = name + “=”+ escape (value) + “;expires=” + exp.toGMTString();
    }

    function getCookie(name) {
    var arr = document.cookie.match(new RegExp(“(^| )”+name+”=([^;]*)(;|$)”));
    if(arr != null) return unescape(arr[2]); return null;
    }

    function delCookie(name){
    var exp = new Date();
    exp.setTime(exp.getTime() - 1);
    var cval=getCookie(name);
    if(cval!=null) document.cookie= name + “=”+cval+”;expires=”+exp.toGMTString();
    }
    </script>

  • 相关阅读:
    CCF CSP 201403-2 窗口
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
    Ethical Hacking
  • 原文地址:https://www.cnblogs.com/w3live/p/2080862.html
Copyright © 2011-2022 走看看