today=new Date(); var week; var date; var nian; var yue; yue="日" nian="年" if(today.getDay()==0) week="星期日" if(today.getDay()==1) week="星期一" if(today.getDay()==2) week="星期二" if(today.getDay()==3) week="星期三" if(today.getDay()==4) week="星期四" if(today.getDay()==5) week="星期五" if(today.getDay()==6) week="星期六" moth=today.getMonth()+1 if(moth==1) mth="1月" if(moth==2) mth="2月" if(moth==3) mth="3月" if(moth==4) mth="4月" if(moth==5) mth="5月" if(moth==6) mth="6月" if(moth==7) mth="7月" if(moth==8) mth="8月" if(moth==9) mth="9月" if(moth==10) mth="10月" if(moth==11) mth="11月" if(moth==12) mth="12月" shijian=today.getHours()+":"+today.getMinutes()+":"+today.getSeconds() date=" "+(today.getFullYear())+""+nian+mth+today.getDate()+""+yue var dt="" + date +"  "+ week + ""; document.write(dt);