<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>递归调用</title> </head> <script> fc(); function fc(){ var aa=document.getElementById("bb"); var red=Math.random()*255; var green=Math.random()*255; var blue=Math.random()*255; aa.style.color="rgb("+red+","+green+","+blue+")"; setTimeout("fc()",500); }