首页| 新闻| 娱乐| 游戏| 科普| 文学| 编程| 系统| 数据库| 建站| 学院| 产品| 网管| 维修| 办公| 热点
该类可以通过要害字(key)查找相对应的值(value),要害字的类型可以是String、Number、Boolean类型,值的类型不限,代码如下:
运行代码框<script>function struct(key, value){ this.key = key; this.value = value;}function setAt(key, value){ for (var i = 0; i < this.map.length; i ) { if ( this.map[i].key === key ) { this.map[i].value = value; return; } } this.map[this.map.length] = new struct(key, value);}function lookUp(key){ for (var i = 0; i < this.map.length; i ) { if ( this.map[i].key === key ) { return this.map[i].value; } } return null;}function removeKey(key){ var v; for (var i = 0; i < this.map.length; i ) { v = this.map.pop(); if ( v.key === key ) continue; this.map.unshift(v); }}function getCount(){ return this.map.length;}function isEmpty(){ return this.map.length <= 0;}function classMap() { this.map = new Array(); this.lookUp = lookUp; this.setAt = setAt; this.removeKey = removeKey; this.getCount = getCount; this.isEmpty = isEmpty;}window.onload = function(){ var map = new classMap(); alert("is the map empty? " map.isEmpty()); // string to array map.setAt("sw1", new Array("sw1_1")); map.setAt("sw2", new Array("sw2_1", "sw2_2")); map.setAt("sw3", new Array("sw3_1", "sw3_2", "sw3_3")); alert(map.lookUp("sw5")); // null alert(map.lookUp("sw2")); // "sw2_1, sw2_2" alert(map.getCount()); // 3 // number to string map.setAt(1, "sw1"); map.setAt(2, "sw2"); alert(map.lookUp(2)); // "sw2" map.setAt(2, new Array("sw2_1", "sw2_2")); alert(map.lookUp(2)); // "sw2_1, sw2_2" alert(map.getCount()); // 5 // string to number map.setAt("1", 1); map.setAt("2", 2); alert(map.lookUp("1")); // 1 alert(map.lookUp(1)); // "sw1" map.setAt("sw3", 33); alert(map.lookUp("sw3")); // 33 alert(map.getCount()); // 7 // number to number map.setAt(1, 11); map.setAt(2, 22); alert(map.lookUp(1)); // 11 alert(map.getCount()); // 7 map.removeKey(1); alert(map.lookUp(1)); // null alert(map.getCount()); // 6 // boolean to array map.setAt(false, new Array("false", "true")); alert(map.lookUp(false)); alert(map.getCount()); // 7}</script> [Ctrl A 全部选择 提示:你可先修改部分代码,再按运行]
练就火眼金睛 十一种常见电脑
打印机共享提示“操作无法完成
如何查找有故障的配件
回眸一笑百魅生,六宫粉黛无颜色
岁月静美,剪一影烟雨江南
芜湖有个“松鼠小镇”
小满:小得盈满,一切刚刚好!
一串串晶莹剔透的葡萄,像一颗颗宝石挂在藤
正宗老北京脆皮烤鸭
人逢知己千杯少,喝酒搞笑图集
搞笑试卷,学生恶搞答题
新闻热点
疑难解答
图片精选
Dreamweaver问题集锦大全
Dreamweaver CS3 的最新功能
Dreamweaver CS3代码片断功能面板
Dreamweaver技巧:运用代码片断工具
网友关注