我想改变我的天棚颜色
这是Html代码
<marquee><div id="thakan">Thakaan ka Ant, Shakti Turant!!</div></marquee>
这是javascript代码
<script language="javascript" type="text/javascript">
var col=0;
function changeMarqueeColor()
{
if(col==0)
{
//document.getElementById("p2").style.color="blue";
documrnt.getElementById("thakan").style.color="yello";
col=1;
}
else
{
documrnt.getElementById("thakan").style.color="blue";
col=0;
}
}
b=setInterval("changeMarqueeColor();",500);
</script>
您也可以访问此链接:http://jsfiddle.net/W4tzf/
最佳答案
下面的代码有效。正如其他人所提到的,你拼错了document
。另外,实现所需功能的最简单方法是使用setInterval
和未引用的函数名。
var col=0;
function changeMarqueeColor()
{
if(col==0)
{
document.getElementById("thakan").style.color="red";
col=1;
}
else
{
document.getElementById("thakan").style.color="blue";
col=0;
}
}
setInterval(changeMarqueeColor,500);