vartimerID=null;vartimerRunning=false;functionstopclock(){if(timerRunning)clearTimeout(timerID);timerRunning=false;}functionstartclock(){stopclock();showtime();}functionshowtime(){varnow=2、newDate();varhours=now.getHours();varminutes=now.getMinutes();varseconds=now.getSeconds()vartimeValue=""+((hours>=12)?"PM":"AM")timeValue+=((hours>12)?hours-12:hours)timeValue+=((minutes<10)?":0":":")+minutestimeValue+=((seconds<10)?":0":":")+secondsdocument.clock.thetime.value=timeValue;tim
3、erID=setTimeout("showtime()",1000);timerRunning=true;}varenabled=0;today=newDate();varday;vardate;if(today.getDay()==0)day="星期日"if(today.getDay()==1)day="星期一"if(today.getDay()==2)day="星期二"if(today.getDay()==3)day="星期三"if(today.getDay()==4)day="星期四"if(today.getDay()==5)day="星期五"if(today.getDa
4、y()==6)day="星期六"document.fgColor="000000";date="当前时间为:"+(today.getFullYear())+"年"+(today.getMonth()+1)+"月"+today.getDate()+"日"+day+"";document.write(date);