js中哈希表的几种用法总结
1.
<html>
<head>
<script type="text/javascript">
// by Go_Rush(脚本之家) from https://www.jb51.net/
var hash={
"百度" :"http://www.baidu.com/",
"Google" :"http://www.google.com/",
"微软" :"http://www.microsoft.com/",
"脚本之家" :"https://www.jb51.net/"
};
function showUrl(element){ //使用哈稀对象
alert(hash[element.value])
}
</script>
</head>
<body>
<form>
<input type="text" id="txt" />
<input type="button" value="测试" onclick="showUrl(document.getElementById('txt'));"/>
</form>
</body>
</html>
2.
<script>
var ht =
{
"c1" : {"UserID":"userc1","UserName":"usercc1"},
"c2" : {"UserID":"userc2","UserName":"usercc2"},
"c3" : {"UserID":"userc3","UserName":"usercc3"}
};
alert(ht["c1"]["UserID"]);
alert(ht["c2"]["UserID"]);
</script>
3
<script>
var Arr =new Array({'s':'sss','aa':'www'},{'s1':'wwww','aa1':'ssss'});
alert(Arr[0].s);
alert(Arr[0].aa);
alert(Arr[1].s1);
alert(Arr[1].aa1);
</script>
相关文章
鼠标经过子元素触发mouseout,mouseover事件的解决方案
这篇文章主要介绍了鼠标经过子元素触发mouseout,mouseover事件的解决方案的相关资料,需要的朋友可以参考下2015-07-07JavaScript中获取当前时间yyyymmddhhmmss的六种实现方式
js中提供了一个Date对象供我们获取当前时间,下面这篇文章主要给大家介绍了关于JavaScript中获取当前时间yyyymmddhhmmss的六种实现方式,文中通过代码介绍的非常详细,需要的朋友可以参考下2023-12-12
最新评论