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 中创建电影片段?

在 Activity 内部,如何暂停 for 循环以调用片段,然后在按钮单击片段后恢复循环以重新开始

for循环结构

codeblock代码片段

创建自己的代码片段(CodeSnippet)

C#VS快捷键