美文网首页
Interlaced Grey

Interlaced Grey

作者: Jadon7 | 来源:发表于2018-10-07 17:01 被阅读0次
<!DOCTYPE html>
<html>
<head>
    <title>Interlaced Grey</title>
</head>
<script type="text/javascript">
    window.onload=function()
    {
        var aLi=document.getElementsByTagName('li');
        for (var i = 0; i < aLi.length; i++) 
        {
            if (i%2==0) 
            {
                aLi[i].style.background='#EEE';
            }
            else
            {
                aLi[i].style.background='';
            }
        }
    }
</script>
<body>
<ul>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>
</ul>
</body>
</html>

相关文章

网友评论

      本文标题:Interlaced Grey

      本文链接:https://www.haomeiwen.com/subject/rkglaftx.html