<div>
<h2 id="change"> Hello Family</h2>
</div>
<script type="text/javascript">
setTimeout("firstColor()", 3000)
function firstColor(){
document.getElementById('change').style.color="#ffffff";
secondColor();
}
function secondColor(){
document.getElementById('change').style.color="#33ccff";
}
</script>
此代码仅更改一次颜色。我希望这两种颜色来回改变。当我secondColor
从firstColor
函数调用函数时,它不会执行。我知道到目前为止我所拥有的不是循环,但我对secondColor()
不会执行的事实感到困惑。我需要帮助理解为什么secondColor
函数没有执行以及如何循环它。