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

js中数组以及for循环的使用

时间:2015-07-23 00:30:19      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
div{
    width:200px;
    height:200px;
    float:left;
    border:1px solid #000;
    margin:20px;
    
    }
</style>
<script>
 window.onload=function()
    {
        var adiv=document.getElementsByTagName("div");
        /*alert (adiv.length);*/
        odiv[2].style.background="red";

    }

</script>
</head>

<body>
<div ></div>
<div ></div>
<div ></div>
<div ></div>
</body>
</html>

给4个div中的任何一个添加背景颜色

<script>
 window.onload=function()
    {
        var adiv=document.getElementsByTagName("div");
        /*alert (adiv.length);*/
        for(i=0;i<4;i++)
        {
            adiv[i].style.background="red" ;
            }

    }

</script>

利用for循环给4个div全部添加背景颜色。

js中数组以及for循环的使用

标签:

原文地址:http://www.cnblogs.com/kangshuai/p/4668963.html

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