js简单遍历获取对象中的属性值的方法示例
程序员文章站
2022-04-28 20:59:16
本文实例讲述了js简单遍历获取对象中的属性值的方法。分享给大家供大家参考,具体如下:
本文实例讲述了js简单遍历获取对象中的属性值的方法。分享给大家供大家参考,具体如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>www.jb51.net js遍历json属性值</title> </head> <body> <script> // js获取对象中的属性值 var slidearray = { slides: [ { "imgsrc": "a.jpg", "url": "", "alt": "这是a图片" }, { "imgsrc": "b.jpg", "url": "", "alt" : "这是b图片" }, { "imgsrc": "c.jpg", "url": "", "alt": "这是c图片" }, { "imgsrc": "d.jpg", "url": "", "alt": "这是d图片" }, { "imgsrc": "e.jpg", "url": "", "alt" : "这是e图片" }] }; //通过以下的方法可以遍历js数组中对象的属性 for(var i=0; i<slidearray.slides.length; i++) { console.log(slidearray.slides[i].imgsrc); } </script> </body> </html>
运行结果:
感兴趣的朋友可以使用在线html/css/javascript代码运行工具:http://tools.jb51.net/code/htmljsrun测试上述代码运行效果。
ps:这里再为大家推荐一款js数组遍历方式分析对比工具供大家参考:
在线js常见遍历方式性能分析比较工具:
更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript数组操作技巧总结》、《javascript遍历算法与技巧总结》、《javascript面向对象入门教程》、《javascript数学运算用法总结》、《javascript数据结构与算法技巧总结》及《javascript错误与调试技巧总结》
希望本文所述对大家javascript程序设计有所帮助。