﻿// JScript 文件

function settime()
{
var myyear,mymonth,myweek,myday,mytime,mymin,myhour,mysec;
var mydate=new Date();
myyear=mydate.getFullYear();
mymonth=mydate.getMonth() + 1;
myday=mydate.getDate();
myhour=mydate.getHours();
mymin=mydate.getMinutes();
mysec=mydate.getSeconds();
mytime=myyear+"年"+mymonth+"月"+myday+"日"+myhour+":"+mymin+":"+mysec;
document.getElementById('xwgtime').innerHTML=mytime;
setTimeout('settime()',1000);
}

function cleartime()
{
clearTimeout()
}

