Copy Code code as follows:
function SetTime ()
{
var myyear,mymonth,myweek,myday,mytime,mymin,myhour,mysec;
var mydate=new Date ();
Myyear=mydate.getfullyear ();
Mymonth=mydate.getmonth ();
Myday=mydate.getdate ();
Myhour=mydate.gethours ();
Mymin=mydate.getminutes ();
Mysec=mydate.getseconds ();
Mytime= "Today is:" +myyear+ "year" +mymonth+ "month" +myday+ "Day" +myhour+ ":" +mymin+ ":" +MYSEC;
document.getElementById (' Xwgtime '). Innerhtml=mytime;
SetTimeout (' settime () ', 1000);
}
This will show the time! The script is really powerful ...! With this method can also make a few less site after their own conversion to another page to the function!
For example:
Copy Code code as follows:
function SetTime (nometime)
{
document.getElementById ("TimeValue"). innerhtml=nometime+ "Automatic login after Seconds";
nometime--;
if (nometime==-1)
{
document.getElementById ("TimeValue"). style.display= "None";
Return
}
Window.settimeout ("Javascript:settime" ("+nometime+") ", 1000);
}
Where Nometime is the initial time size such as 10 seconds!