js操作cookie

1.写入cookie

document.cookie = "sex=" + encodeURIComponent(name);

2.置空cookie

document.cookie = "sex=";

2.读取cookie

    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 decodeURI(document.cookie.substring(c_start,c_end))
                } 
              }
            return ""
        }

参考资料:

[1]http://www.w3school.com.cn/js/js_cookies.asp

原文地址:https://www.cnblogs.com/luoxiaolei/p/5726735.html