body中的内容如下:
<div id="starsDiv" style="position:absolute;top:0px;left:0px" >
<div style="position:relative;width:30px;height:30px;background-color:#fff000;font-size:30px" ></div>
<div style="position:relative;width:30px;height:30px;background-color:#ffa000;font-size:30px" ></div>
<div style="position:relative;width:30px;height:30px;background-color:#ff00ff;font-size:30px" ></div>
<div style="position:relative;width:30px;height:30px;background-color:#ffa000;font-size:30px" ></div>
<div style="position:relative;width:30px;height:30px;background-color:#ff00ff;font-size:30px" ></div>
</div>
<script type="text/javascript">
<!--
var sd=document.getElementById("starsDiv");
for(var i=0;i<sd.length;i++){
sd[i].style.backgroundColor="blue";
alert();
}
//-->
</script>
颜色没改变,alert也没弹出!
我觉得可能是遍历的语法不对,但是不知道哪不对。用starsDiv.all.length也没反应。请教高手?标准的遍历语法是什么???
你好!!
你是想要遍历(id为starsDiv)这个DIV的内部的div么?
document.getElementById() 这个是根据ID来获取元素。
document.getElementsByTagName() 这个是根据html标记来获取元素数组,注意Element是复数形式
var _starsDiv = document.getElementById("starsDiv"),按照你的写法你遍历的是外层div,但是你用id来取出,不是一个数组,所以没有length属性,所以你取出长度没有反应。
遍历id是starsDiv的div里面的div应该是需要再取一次:
希望能帮到你哦。
已测试