JavaScript built-in objects date common functions

Source: Internet
Author: User

Get current time
var dt = new Date ();
alert (DT);
Incoming time
var dt1 = new Date ("2017-08-12");
alert (DT1);
//
Gets the time object (in milliseconds)
var DT2 = Date.now ();
alert (DT2);
//
var dt3 = new Date ();
Get year
Alert (Dt3.getfullyear ());
Get month
Alert (Dt3.getmonth () + 1);//is the real month starting from 0 plus 1
Get Date
Alert (Dt3.getdate ());
Get hours
Alert (dt3.gethours ());
Get minutes
Alert (Dt3.getminutes ());
Get seconds
Alert (Dt3.getseconds ());
Get Week
Alert (Dt3.getday ());

var dt = new Date ();
Alert (dt.todatestring ());//English--date
Alert (dt.tolocaledatestring ());//number format--date
Alert (dt.totimestring ());//hours, minutes, seconds
Alert (dt.tolocaletimestring ());//hours, minutes, seconds
Alert (dt.valueof ());//Gets the millisecond value of the time
alert (DT);
Convert to String
Alert (dt.tostring ());

JavaScript built-in objects date common functions

Related Article

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.