码迷,mamicode.com
首页 > 编程语言 > 详细

javascript中的for……in循环

时间:2014-09-12 14:58:53      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   color   java   ar   for   on   c   new   javascript   

  <script type="text/javascript">
   var theBeatles=new Array("John","Paul","Gearge","Ringo");
   for(var loopCounter=0;loopCounter<theBeatles.length;loopCounter++){
       document.write(theBeatles[loopCounter]+"<br>");
   }
   var indexKey;
   for(indexKey in theBeatles){
       document.write("indexKey is "+indexKey+"<br>");
       document.write("item value is "+theBeatles[indexKey]+"<br><br>");
   }
   </script>

javascript中的for……in循环

标签:style   color   java   ar   for   on   c   new   javascript   

原文地址:http://www.cnblogs.com/vonk/p/3968328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!