HTTP/1.1 200 OK Date: Wed, 09 Apr 2008 06:17:19 GMT Server: Apache/2.2.4 (Unix) PHP/5.2.1 X-Powered-By: PHP/5.2.1 Set-Cookie: ECS_ID=89c99b5cdc8b24b090f4c97a24d3b98859e91e48; path=/ Cache-control: private Connection: close Transfer-Encoding: chunked Content-Type: text/html; charset=utf-8 9d83 手机配件批发网 - // 查看购物车 | 用户中心 | 选购中心 | 首页 手机双卡通 手机电池 手机魔卡 夏普卡贴 商品搜索 所有分类 手机双卡通    16代双卡通    13代双卡通    12代双卡通双卡通剪卡器手机魔卡SIM卡备份器手机电池    诺基亚手机替换电池    摩托罗拉手机潜换电池    索爱手机替换电池    三星手机替换电池手机皮套夏普卡贴 高级搜索 双卡通批发 手机电池批发 手机魔卡批发 您的购物车中有 0 件商品,总计金额 ¥0.00元。 当前位置: 首页 会员登录 | 注册新会员 | 您忘记密码了吗? 商品分类 手机双卡通 16代双卡通 13代双卡通 12代双卡通 双卡通剪卡器 手机魔卡 SIM卡备份器 手机电池 诺基亚手机替换电池 摩托罗拉手机潜换电池 索爱手机替换电池 三星手机替换电池 手机皮套 夏普卡贴 var Class = { create: function() { return function() { this.initialize.apply(this, arguments); } } } Object.extend = function(destination, source) { for (property in source) destination[property] = source[property]; return destination; } Function.prototype.bind = function(object) { var __method = this; return function() { return __method.apply(object, arguments); } } Function.prototype.bindAsEventListener = function(object) { var __method = this; return function(event) { __method.call(object, event || window.event); } } function () { if (arguments.length == 1) return get(arguments[0]); var elements = []; c(arguments).each(function(el){ elements.push(get(el)); }); return elements; function get(el){ if (typeof el == 'string') el = document.getElementById(el); return el; } } if (!window.Element) var Element = new Object(); Object.extend(Element, { remove: function(element) { element = (element); element.parentNode.removeChild(element); }, hasClassName: function(element, className) { element = (element); if (!element) return; var hasClass = false; element.className.split(' ').each(function(cn){ if (cn == className) hasClass = true; }); return hasClass; }, addClassName: function(element, className) { element = (element); Element.removeClassName(element, className); element.className += ' ' + className; }, removeClassName: function(element, className) { element = (element); if (!element) return; var newClassName = ''; element.className.split(' ').each(function(cn, i){ if (cn != className){ if (i > 0) newClassName += ' '; newClassName += cn; } }); element.className = newClassName; }, cleanWhitespace: function(element) { element = (element); c(element.childNodes).each(function(node){ if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) Element.remove(node); }); }, find: function(element, what) { element = (element)[what]; while (element.nodeType != 1) element = element[what]; return element; } }); var Position = { cumulativeOffset: function(element) { var valueT = 0, valueL = 0; do { valueT += element.offsetTop|| 0; valueL += element.offsetLeft || 0; element = element.offsetParent; } while (element); return [valueL, valueT]; } }; document.getElementsByClassName = function(className) { var children = document.getElementsByTagName('*') || document.all; var elements = []; c(children).each(function(child){ if (Element.hasClassName(child, className)) elements.push(child); }); return elements; } Array.prototype.iterate = function(func){ for(var i=0;i 0) this.custom(this.el.offsetHeight, 0); else this.custom(0, this.el.scrollHeight); } }); fx.Width = Class.create(); Object.extend(Object.extend(fx.Width.prototype, fx.Layout.prototype), { increase: function() { this.el.style.width = this.now + "px"; }, toggle: function(){ if (this.el.offsetWidth > 0) this.custom(this.el.offsetWidth, 0); else this.custom(0, this.iniWidth); } }); fx.Opacity = Class.create(); fx.Opacity.prototype = Object.extend(new fx.Base(), { initialize: function(el, options) { this.el = (el); this.now = 1; this.increase(); this.setOptions(options); }, increase: function() { if (this.now == 1 && (/Firefox/.test(navigator.userAgent))) this.now = 0.9999; this.setOpacity(this.now); }, setOpacity: function(opacity) { if (opacity == 0 && this.el.style.visibility != "hidden") this.el.style.visibility = "hidden"; else if (this.el.style.visibility != "visible") this.el.style.visibility = "visible"; if (window.ActiveXObject) this.el.style.filter = "alpha(opacity=" + opacity*100 + ")"; this.el.style.opacity = opacity; }, toggle: function() { if (this.now > 0) this.custom(1, 0); else this.custom(0, 1); } }); fx.sinoidal = function(pos){ return ((-Math.cos(pos*Math.PI)/2) + 0.5); } fx.linear = function(pos){ return pos; } fx.cubic = function(pos){ return Math.pow(pos, 3); } fx.circ = function(pos){ return Math.sqrt(pos); } fx.Scroll = Class.create(); fx.Scroll.prototype = Object.extend(new fx.Base(), { initialize: function(options) { this.setOptions(options); }, scrollTo: function(el){ var dest = Position.cumulativeOffset((el))[1]; var client = window.innerHeight || document.documentElement.clientHeight; var full = document.documentElement.scrollHeight; var top = window.pageYOffset || document.body.scrollTop || document.documentElement.scrollTop; if (dest+client > full) this.custom(top, dest - client + (full-dest)); else this.custom(top, dest); }, increase: function(){ window.scrollTo(0, this.now); } }); fx.Text = Class.create(); fx.Text.prototype = Object.extend(new fx.Base(), { initialize: function(el, options) { this.el = (el); this.setOptions(options); if (!this.options.unit) this.options.unit = "em"; }, increase: function() { this.el.style.fontSize = this.now + this.options.unit; } }); fx.Combo = Class.create(); fx.Combo.prototype = { setOptions: function(options) { this.options = { opacity: true, height: true, width: false } Object.extend(this.options, options || {}); }, initialize: function(el, options) { this.el = (el); this.setOptions(options); if (this.options.opacity) { this.o = new fx.Opacity(el, options); options.onComplete = null; } if (this.options.height) { this.h = new fx.Height(el, options); options.onComplete = null; } if (this.options.width) this.w = new fx.Width(el, options); }, toggle: function() {this.checkExec('toggle');}, hide: function(){this.checkExec('hide');}, clearTimer: function(){this.checkExec('clearTimer');}, checkExec: function(func){ if (this.o) this.o[func](); if (this.h) this.h[func](); if (this.w) this.w[func](); }, resizeTo: function(hto, wto) { if (this.h && this.w) { this.h.custom(this.el.offsetHeight, this.el.offsetHeight + hto); this.w.custom(this.el.offsetWidth, this.el.offsetWidth + wto); } }, customSize: function(hto, wto) { if (this.h && this.w) { this.h.custom(this.el.offsetHeight, hto); this.w.custom(this.el.offsetWidth, wto); } } } fx.Accordion = Class.create(); fx.Accordion.prototype = { setOptions: function(options) { this.options = { delay: 100, opacity: false } Object.extend(this.options, options || {}); }, initialize: function(yijis, elements, options) { this.elements = elements; this.setOptions(options); var options = options || ''; this.fxa = []; if (options && options.onComplete) options.onFinish = options.onComplete; elements.each(function(el, i){ options.onComplete = function(){ if (el.offsetHeight > 0) el.style.height = '1%'; if (options.onFinish) options.onFinish(el); } this.fxa[i] = new fx.Combo(el, options); this.fxa[i].hide(); }.bind(this)); yijis.each(function(tog, i){ if (typeof tog.onclick == 'function') var exClick = tog.onclick; tog.onclick = function(){ if (exClick) exClick(); this.showThisHideOpen(elements[i]); }.bind(this); }.bind(this)); }, showThisHideOpen: function(toShow){ this.elements.each(function(el, j){ if (el.offsetHeight > 0 && el != toShow) this.clearAndToggle(el, j); if (el == toShow && toShow.offsetHeight == 0) setTimeout(function(){this.clearAndToggle(toShow, j);}.bind(this), this.options.delay); }.bind(this)); }, clearAndToggle: function(el, i){ this.fxa[i].clearTimer(); this.fxa[i].toggle(); } } var Remember = new Object(); Remember = function(){}; Remember.prototype = { initialize: function(el, options){ this.el = (el); this.days = 365; this.options = options; this.effect(); var cookie = this.readCookie(); if (cookie) { this.fx.now = cookie; this.fx.increase(); } }, setCookie: function(value) { var date = new Date(); date.setTime(date.getTime()+(this.days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); document.cookie = this.el+this.el.id+this.prefix+"="+value+expires+"; path=/"; }, readCookie: function() { var nameEQ = this.el+this.el.id+this.prefix + "="; var ca = document.cookie.split(';'); for(var i=0;c=ca[i];i++) { while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return false; }, custom: function(from, to){ if (this.fx.now != to) { this.setCookie(to); this.fx.custom(from, to); } } } fx.RememberHeight = Class.create(); fx.RememberHeight.prototype = Object.extend(new Remember(), { effect: function(){ this.fx = new fx.Height(this.el, this.options); this.prefix = 'height'; }, toggle: function(){ if (this.el.offsetHeight == 0) this.setCookie(this.el.scrollHeight); else this.setCookie(0); this.fx.toggle(); }, resize: function(to){ this.setCookie(this.el.offsetHeight+to); this.fx.custom(this.el.offsetHeight,this.el.offsetHeight+to); }, hide: function(){ if (!this.readCookie()) { this.fx.hide(); } } }); fx.RememberText = Class.create(); fx.RememberText.prototype = Object.extend(new Remember(), { effect: function(){ this.fx = new fx.Text(this.el, this.options); this.prefix = 'text'; } }); Array.prototype.iterate = function(func){ for(var i=0;i0) { var tree = document.getElementById("category-tree"); var tags = tree.getElementsByTagName("H3"); for (var i=0;i=0) { myAccordion.showThisHideOpen(contents[i]); } } } else { myAccordion.showThisHideOpen(contents[0]); } // 订单查询 热卖商品 more... 诺基亚电池批发(适用... 市场价格:¥35.00元 促销价格:¥8.50元 剪卡器批发 市场价格:¥45.00元 本店售价:¥30.00元 //'); document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); //]]> 精品推荐 more... 狗卡批发(一卡六号批... 市场价格:¥80.00元 本店售价:¥30.00元 企鹅卡批发(一卡十二... 市场价格:¥120.00元 本店售价:¥35.00元 金鱼卡批发(一卡十六... 市场价格:¥36.00元 本店售价:¥30.00元 剪卡双卡通批发 市场价格:¥30.00元 促销价格:¥8.50元 免剪双卡通批发 (1... 市场价格:¥25.00元 本店售价:¥8.50元 双卡通批发(最新16... 市场价格:¥30.00元 本店售价:¥9.00元 新货上市 more... 手机魔卡批发(套卡) 市场价格:¥80.00元 促销价格:¥30.00元 SIM卡备份器批发 市场价格:¥30.00元 本店售价:¥15.00元 双卡通批发(最新16... 市场价格:¥30.00元 本店售价:¥9.00元 最新公告 我们是本店大部份产品的直接生产厂家,将以诚信与质量来打造手机配件网络批发行业第一品牌。 此外,在本店批发的商品,支持支付宝交易! 批发热线: 张生 13828451731 最新文章 [iphone卡贴教程] 原生(OTB)iPhone1.1.2... [双卡通] 剪卡型双卡通完整操作教程(动画) [双卡通] 免剪双卡通完整安装操作教程(图) [iphone卡贴教程] iPhone必用 installer... [iphone卡贴教程] 超简单!解锁1.0.2版iPhone... [iphone卡贴教程] 最新iPhone1.1.1升至1.1... 促销商品 诺基亚电池批发(适用... 促销价格: ¥8.50元 手机魔卡批发(套卡) 促销价格: ¥30.00元 剪卡双卡通批发 促销价格: ¥8.50元 more... 品牌专区 海利丰 (2) E-Mail订阅 //   [ECSHOP 网上商店] [淘宝双卡通批发店] [中华展会网] [中华约稿网] [公司网站] [淘宝批发点] 免责条款 | 隐私保护 | 咨询热点 | 联系我们 | 公司简介 | 批发方案 | 配送方式 Copyright © 2005-2008 手机配件批发网 版权所有,并保留所有权利。 Tel: 13828451731 343612008 363778180 angchina sword101808 mingbini@hotmail.com 广州市西堤二马路南方国际电子大厦11楼 ICP备案证书号:粤ICP备07507140号 ECSHOPMAIFOU _uacct = "UA-260625-9"; urchinTracker(); 0