MooTools 哈希表
2010-09-20 12:29 LvSir 阅读(214) 评论(0) 编辑 收藏 举报获取键值用:id
var products=new Hash();
products.include('1',{price:100,time:5});
products.include('2',{price:101,time:6});
products.include('3',{price:103,time:62});
alert(products.get('1').price);
products.each(function (data,id){
alert(id);
});
为了实现梦想,无论遇到多么大的困难,都不退缩!