JS Time Display Effect Code _ time Date

Source: Internet
Author: User
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!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.