document.writeln("<script>");
document.writeln("function show(){ ");
document.writeln("var date = new Date(); ");
document.writeln("var now = \"\"; ");
document.writeln("now = date.getFullYear()+\"年\"; ");
document.writeln("now = now + (date.getMonth()+1)+\"月\"; ");
document.writeln("now = now + date.getDate()+\"日 \"; ");
document.writeln("now = now + date.getHours()+\"时\"; ");
document.writeln("now = now + date.getMinutes()+\"分\"; ");
document.writeln("now = now + date.getSeconds()+\"秒\"; ");
document.writeln("document.getElementById(\"nowDiv\").innerHTML = now;");
document.writeln("setTimeout(\"show()\",1000);");
document.writeln("} ");
document.writeln("<\/script> ");
document.writeln("<body onload=\"show()\">");
document.writeln("<div id=\"nowDiv\"><\/div>");