摘要: //购物车var Cart = function () { this.Count = 0; this.Total = 0; this.Items = new Array();};//购物车集合对象var CartItem = function () { this.Id = 0; this.Name = ""; this.Count = 0; this.Price = 0;};//购物车操作var CartHelper = function () { this.cookieName = "yxhCart"; this.Clear = func... 阅读全文
posted @ 2013-04-21 16:42 黑冰.org 阅读(2508) 评论(3) 推荐(1) 编辑