English
<!--Script description:<br> Add the following code to the <head> area--> <!-- http://www.downcodes.com/js --> <!-- bbs http://bbs .downcodes.com --> <script language="javascript"> var week; if(new Date().getDay()==0) week="Sunday" if(new Date().getDay()== 1) week="Monday" if(new Date().getDay()==2) week="Tuesday" if(new Date().getDay()==3) week="Wednesday" if(new Date( ).getDay()==4) week="Thursday" if(new Date().getDay()==5) week="Friday" if(new Date().getDay()==6) week ="Saturday" document.write((new Date().getMonth()+1)+"month"+new Date().getDate()+"日"+week); </script>