JS to get time new date () usage and get timestamp

Source: Internet
Author: User

Get Time:

1 varmyDate = newDate();//获取系统当前时间

Get time for a specific format:

1 mydate.getyear (); Get Current year (2-bit) 2 mydate.getfullyear (); Get the full year (4-bit, 1970-????) 3 Mydate.getmonth (); Get the current month (0-11, 0 for January) 4 mydate.getdate (); Get current day (1-31) 5 mydate.getday (); Get Current week x (0-6, 0 for Sunday) 6 mydate.gettime (); Gets the current time (number of milliseconds since 1970.1.1) 7 mydate.gethours (); Gets the current number of hours (0-23) 8 mydate.getminutes (); Gets the current number of minutes (0-59) 9 mydate.getseconds (); Gets the current number of seconds (0-59) mydate.getmilliseconds (); Gets the current number of milliseconds (0-999) mydate.tolocaledatestring (); Gets the current date of the Var mytime=mydate.tolocaletimestring (); Get current time mydate.tolocalestring (); Get Date and time

JS Gets the current timestamp method

JavaScript gets the current timestamp:
The first method:

1 var timestamp =date.parse (New Date ());

Results found: 1280977330000 Note: The results obtained here convert the latter three bits (milliseconds) to 000 display, which may cause problems when used. For example, when adding the page element ID dynamically, it is not recommended.


The second method:

1 var timestamp = (new Date ()). ValueOf ();

Results: 1280977330748

The third method:

var timestamp=new Date (). GetTime ();

Results: 1280977330748

JS, call the new date () Separately, for example document.write (new Date ());

Displaying the result: Mar 10:10:43 utc+0800 2012 time in this format

However, using the new Date () Participation calculation is automatically converted to the number of milliseconds starting from 1970.1.1.

JS to get time new date () usage and get timestamp

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.