See More

------------------ Cookie | ------------------ # JS ¶ÔÓÚCookieµÄ²Ù×÷ # ʹÓà document ¶ÔÏó ------------------ Cookie ÉèÖà | ------------------ # ¼òµ¥ÉèÖà document.cookie = "name=value"; document.cookie = "SESSION=F8575532"; # ´øÊôÐÔµÄÉèÖà document.cookie = "name=value;key=value;key-value;key-value;" document.cookie = "SESSION=F8575532;max-age=-1;"; ------------------ Cookie »ñÈ¡ | ------------------ document.cookie * ¸ÃÊôÐԻ᷵»ØËùÓеÄCookie,ÒÔ×Ö·û´®µÄÐÎʽ.·Ö¸î·ûΪ:';' ------------------ Cookie ɾ³ý | ------------------ # Æäʵ¾ÍÊÇÖØÐÂÉèÖà document.cookie = "SESSION=F8575532;max-age=0;"; * ÉèÖÃÖ¸¶¨Ãû³ÆCookie,ÏàͬµÄÓò,·¾¶,ÈÎÒâ·Ç¿ÕÖµ,²¢ÇÒ max-age = 0 ------------------ Cookie - Demo | ------------------ //»ñÈ¡ËùÓеÄCookie function getCookies (){ var cookie = {}; var all = document.cookie; if(all === ''){ return cookie; } var list = all.split(';'); for(var x = 0; x < list.length ; x++){ var cookieStr = list[x]; var point = cookieStr.indexOf('='); var name = cookieStr.substring(0,point); var value = decodeURIComponent(cookieStr.substring(point + 1)); cookie[name] = value; } return cookie; }