熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> ASP編程 >> 正文

asp.net+cookie+javascrip制作的購物車三

2022-06-13   來源: ASP編程 
    ()首先介紹一下javascript操作cookie的基礎
   
    //去除空格回車
   
    StringprototypeTrim = function()
   
    {
   
    return thisreplace(/(^\s*)|(\s*$)/g
   
    }
   
    //設置Cookie
   
    function setCookie(c_name c_valueexpiredays)
   
    {
   
    var exdate=new Date()
   
    exdatesetDate(exdategetDate()+expiredays)
   
    okie = c_name + = + escape(c_value) +
   
    ((expiredays==null) ? : ;expires=+exdatetoGMTString())
   
    }
   
    //按名字讀取Cookie
   
    function getCookie(c_name)
   
    {
   
    if (okielength>
   
    {
   
    var m_car=okiesplit(;
   
    var value=;
   
    for (i = ; i < m_carlength; i++)
   
    {
   
    if(c_nametoString()Trim()==((m_car[i]split(=))[])toString()Trim())
   
    {
   
    value = (m_car[i]split(=))[];
   
    }
   
    }
   
    }
   
    return value;
   
    }
From:http://tw.wingwit.com/Article/program/ASP/201311/21789.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.