博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript Dictionary
阅读量:5941 次
发布时间:2019-06-19

本文共 821 字,大约阅读时间需要 2 分钟。

Excellent.  The 4guysfromrolla example is very helpful, thanks.  I've pasted a complete javascript.js file below which allows one to create a dictionary to make calls like the following:

var userDict = new Dictionary();

userDict.Add("smith", "admin");

userDict.Add("jones", "user");

userDict.Delete("jones");

var keys = userDict.Keys

for(var i=0; i<keys.length; i++)

{

 alert((keys[i]+": "+userDict.Lookup(keys[i])));

 

 Admittedly, the keys array is inefficient, but it's very handy in situations where the dictionary is small.

 --Brett

 

//===========================================================================// Provides a Dictionary object for client-side java scripts//===========================================================================functionLookup(key){
return(this[key]);}functionDelete(){
for(c=0; c

 

转载地址:http://pomtx.baihongyu.com/

你可能感兴趣的文章
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
基于事件驱动的DDD领域驱动设计框架分享(附源代码)
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
度量时间差
查看>>
apache prefork模式优化错误
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
JS页面刷新保持数据不丢失
查看>>
清橙A1202&Bzoj2201:彩色圆环
查看>>
使用data pump工具的准备
查看>>
springMVC---级联属性
查看>>
get和post区别
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
cmd.exe启动参数说明
查看>>
《随笔记录》20170310
查看>>
网站分析系统
查看>>
从零开始来看一下Java泛型的设计
查看>>