Get Time:
|
var myDate = new Date(); //获取系统当前时间 |
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
How to get time new date () in JS