for循环的使用
Posted wjybk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环的使用相关的知识,希望对你有一定的参考价值。
用for循环取数组的值
第一种
<script> // 用for循环取数组的值 function f1(){ let a = [‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘]; for (let item in a){ // console.log(a[item]); let s = a[item] + "<br/>"; document.write(s); } } setInterval(‘f1();‘, 500); <script/>
第二种
<script> function f1(){ let a = [‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘]; for (let item=0; item<a.length; item++){ // console.log(a[item]); let s = a[item] + "<br/>"; document.write(s); } } setInterval(‘f1();‘, 500); </script>
用for循环取对象的值
<script> //用for循环取对象的值 function f1(){ let a = {‘k1‘:‘A‘, ‘k2‘:‘B‘, ‘k3‘:‘C‘, ‘k4‘:‘D‘,‘k5‘:‘E‘}; for (let item in a){ // console.log(a[item]); let s = a[item] + "<br/>"; document.write(s); } } setInterval(‘f1();‘, 500) </script>
以上是关于for循环的使用的主要内容,如果未能解决你的问题,请参考以下文章
如何使用引导程序和 for 循环在 django 中创建电影片段?