2 Star 0 Fork 0

祝自强/boom

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jasonObjectArray.html 655 Bytes
一键复制 编辑 原始数据 按行查看 历史
祝自强 提交于 2024-07-12 22:51 . 第一次提交代码练习
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jason数据的嵌套</title>
</head>
<body>
<script type="text/javascript">
//jason数据是对象,对象值是数组
var jasonObject = {
"k1":["北京","南昌","上海"],
"k2":["中国","日本","美国"],
}
//取出上海
console.log(jasonObject.k1[2]);
console.log("====================")
//遍历对象
for (var i=0; i< jasonObject.k1.length; i++){
console.log(jasonObject.k1[i]);
}
console.log("====================")
for (var i=0; i<jasonObject.k2.length; i++){
console.log(jasonObject.k2[i]);
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wishing-for-self-improvement/boom.git
git@gitee.com:wishing-for-self-improvement/boom.git
wishing-for-self-improvement
boom
boom
master

搜索帮助