<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312"> <head> <title> New Document </title> <meta http-equiv="content-language" content="gb2312" /> <meta name="author" content="ALEX-ZS(QQ:373646240)" /> <meta name="keywords" content="" /> <meta name="description" content="" /> </head> <body> setTimeout:<div id ="t1"></div> <br /> document.write("========================================================================================") <br /><br /> setInterval:<div id ="t2"></div> <mce:script type="text/javascript"><!-- function showTime() { var today = new Date(); document.getElementById("t1").innerHTML="The time is: " + today.toString(); setTimeout("showTime()", 3000); } showTime() function showTime1() { var today = new Date(); document.getElementById("t2").innerHTML="The time is: " + today.toString(); } setInterval("showTime1()", 3000); // --></mce:script> </body> </html>