posts - 9, comments - 5, trackbacks - 0, articles - 2
            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

          [導入]JavaScript 解析 Cookie 的代碼

          Posted on 2007-11-10 17:21 代林 閱讀(286) 評論(0)  編輯  收藏
          						/*
          						 * WebFXCookie class
          						 */
          						function WebFXCookie() {
              if (document.cookie.length) { this.cookies = ' ' + document.cookie; }
          }
          
          WebFXCookie.prototype.setCookie = function (key, value) {
              document.cookie = key + "=" + escape(value);
          }
          
          WebFXCookie.prototype.getCookie = function (key) {
              if (this.cookies) {
                  var start = this.cookies.indexOf(' ' + key + '=');
                  if (start == -1) { returnnull; }
                  var end = this.cookies.indexOf(";", start);
                  if (end == -1) { end = this.cookies.length; }
                  end -= start;
                  var cookie = this.cookies.substr(start,end);
                  return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1));
              }
              else { returnnull; }
          }
          
          
          
          function getCookieVal (offset) 
          {
              var endstr=document.cookie.indexOf (";",offset);if (endstr==-1) 
              endstr=document.cookie.length;return unescape(document.cookie.substring(offset, endstr));
          }
          
          
          function GetCookie (name)
          {
              var arg=name+"=";var alen=arg.length;var clen=document.cookie.length;var i = 0;while (i<clen)
              {
                  var 
                  j=i+alen;if (document.cookie.substring(i,j)==arg) return getCookieVal (j);i = document.cookie.indexOf(" ",i)+1;if (i==0) 
                  break;
              } 
              returnnull;
          } 
          function DeleteCookie (name) 
          {
              var exp=new Date(); exp.setTime (exp.getTime()-1); var cval=GetCookie (name); 
              document.cookie=name+"="+cval+"; expires="+exp.toGMTString();
          }
          
          


          BeanSoft 2007-10-26 10:52 發表評論

          文章來源:http://www.aygfsteel.com/beansoft/archive/2007/10/26/156057.html

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 广汉市| 安塞县| 黄龙县| 方正县| 托里县| 梅州市| 和政县| 红原县| 偏关县| 浦东新区| 高邑县| 左云县| 郎溪县| 桃江县| 临沂市| 延津县| 龙川县| 太湖县| 怀远县| 长子县| 靖州| 德保县| 河津市| 蒲城县| 郴州市| 阿尔山市| 洛南县| 泰安市| 收藏| 蒙阴县| 高台县| 利津县| 历史| 中牟县| 永平县| 凉城县| 抚远县| 阿坝县| 民乐县| 车险| 苗栗市|