This article mainly introduces the operation of Date date and time objects.
1. Introduction
1.1 Description
Date object is an object for operating date and time. The Date object can only operate on date and time through methods.
1.2 Properties
None;
The Date object can only operate on date and time through methods.
2. Constructor
2.1 new Date(): Returns the current local date and time
Parameters: None
Return value:
{Date} returns a Date object representing the local date and time.
Example:
var dt = new Date(); console.log(dt); // => 返回一个表示本地日期和时间的Date对象
2.2 new Date(milliseconds): Convert milliseconds to Date object
Parameters:
①milliseconds {int}: Number of milliseconds; indicating the number of milliseconds starting from '1970/01/01 00:00:00' as the starting point.
Note: The current time zone must be added to the starting point. The time zone of Beijing time is East 8th District. The actual starting time is: '1970/01/01 08:00:00'
Return value:
{Date} returns a superimposed Date object.
Example:
var dt = new Date(1000 * 60 * 1); // 前进1分钟的毫秒数 console.log(dt); // => {Date}:1970/01/01 08:01:00 dt = new Date(-1000 * 60 * 1); // 倒退1分钟的毫秒数 console.log(dt); // => {Date}:1970/01/01 07:59:00
2.3 new Date(dateStr): Convert string to Date object
Parameters:
①dateStr {string}: can be converted into a string of Date objects (time can be omitted); there are two main formats of strings:
1) yyyy/MM/dd HH:mm:ss (recommended): If the time is omitted, the time of the returned Date object is 00:00:00.
2) yyyy-MM-dd HH:mm:ss: If the time is omitted, the time of the returned Date object is 08:00:00 (plus the local time zone). If the time is not omitted, this string will fail to be converted in IE!
Return value:
{Date} returns a converted Date object.
Example:
var dt = new Date('2014/12/25'); // yyyy/MM/dd console.log(dt); // => {Date}:2014/12/25 00:00:00 dt = new Date('2014/12/25 12:00:00'); // yyyy/MM/dd HH:mm:ss console.log(dt); // => {Date}:2014/12/25 12:00:00 dt = new Date('2014-12-25'); // yyyy-MM-dd console.log(dt); // => {Date}:2014-12-25 08:00:00 (加上了东8区的时区) dt = new Date('2014-12-25 12:00:00'); // yyyy-MM-dd HH:mm:ss (注意:此转换方式在IE中会报错!) console.log(dt); // => {Date}:2014-12-25 12:00:00
2.4 new Date(year, month, opt_day, opt_hours, opt_minutes, opt_seconds, opt_milliseconds): Convert year, month, day, hour, minute and second into Date object
Parameters:
①year {int}: Year; 4 digits. Such as: 1999, 2014
②month {int}: month; 2 digits. Calculation starts from 0, 0 represents January and 11 represents December.
③opt_day {int} Optional: number; 2 digits; counting from 1, 1 means the 1st.
④opt_hours {int} Optional: hours; 2 digits; value 0~23.
⑤opt_minutes {int} Optional: minutes; 2 digits; value 0~59.
⑥opt_seconds {int} Optional: seconds; 2 unnumbered; value 0~59.
⑦opt_milliseconds {int} Optional: Milliseconds; value 0~999.
Return value:
{Date} returns a converted Date object.
Example:
var dt = new Date(2014, 11); // 2014年12月(这里输入的月份数字为11) console.log(dt); // => {Date}:2014/12/01 00:00:00 dt = new Date(2014, 11, 25); // 2014年12月25日 console.log(dt); // => {Date}:2014/12/25 00:00:00 dt = new Date(2014, 11, 25, 15, 30, 40); // 2014年12月25日 15点30分40秒 console.log(dt); // => {Date}:2014/12/25 15:30:40 dt = new Date(2014, 12, 25); // 2014年13月25日(这里输入的月份数字为12,表示第13个月,跳转到第二年的1月) console.log(dt); // => {Date}:2015/01/25
3. Instance methods
The instance methods of Date objects are mainly divided into two forms: local time and UTC time. The same method generally operates on these two time formats (the method name with UTC is the operation of UTC time). Here we mainly introduce the operation of local time.
3.1 get method
Example:
dt.getFullYear(); // => 2014:年 dt.getMonth(); // => 11:月;实际为12月份(月份从0开始计算) dt.getDate(); // => 25:日 dt.getHours(); // => 15:时 dt.getMinutes(); // => 30:分 dt.getSeconds(); // => 40:秒 dt.getMilliseconds(); // => 333:毫秒 dt.getDay(); // => 4:星期几的值 dt.getTime(); // => 1419492640333 :返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
3.2 set方法
示例:
var dt = new Date(); dt.setFullYear(2014); // => 2014:年 dt.setMonth(11); // => 11:月;实际为12月份(月份从0开始计算) dt.setDate(25); // => 25:日 dt.setHours(15); // => 15:时 dt.setMinutes(30); // => 30:分 dt.setSeconds(40); // => 40:秒 dt.setMilliseconds(333); // => 333:毫秒 console.log(dt); // => 2014年12月25日 15点30分40秒 333毫秒
3.3 其他方法
valueOf() :与getTime()一样, 返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
示例:
var dt = new Date(); console.log(dt.toString()); // => Tue Dec 23 2014 22:56:11 GMT+0800 (中国标准时间) :将Date转换为一个'年月日 时分秒'字符串 console.log(dt.toLocaleString()); // => 2014年12月23日 下午10:56:11 :将Date转换为一个'年月日 时分秒'的本地格式字符串 console.log(dt.toDateString()); // => Tue Dec 23 2014 :将Date转换为一个'年月日'字符串 console.log(dt.toLocaleDateString()); // => 2014年12月23日 :将Date转换为一个'年月日'的本地格式字符串 console.log(dt.toTimeString()); // => 22:56:11 GMT+0800 (中国标准时间) :将Date转换为一个'时分秒'字符串 console.log(dt.toLocaleTimeString()); // => 下午10:56:11 :将Date转换为一个'时分秒'的本地格式字符串 console.log(dt.valueOf()); // => 返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
4. 静态方法
4.1 Date.now()
说明:返回当前日期和时间的Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
参数:无
返回值:
{int} :当前时间与起始时间之间的毫秒数。
示例:
console.log(Date.now()); // => 1419431519276
4.2 Date.parse(dateStr)
说明:把字符串转换为Date对象 ,然后返回此Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
参数:
①dateStr {string} :可转换为Date对象的字符串(可省略时间);字符串的格式主要有两种:
1) yyyy/MM/dd HH:mm:ss (推荐):若省略时间,返回的Date对象的时间为 00:00:00。
2) yyyy-MM-dd HH:mm:ss :若省略时间,返回的Date对象的时间为 08:00:00(加上本地时区)。若不省略时间,此字符串在IE中返回NaN(非数字)!
返回值:
{int} 返回转换后的Date对象与起始时间之间的毫秒数。
示例:
console.log(Date.parse('2014/12/25 12:00:00')); // => 1419480000000 console.log(Date.parse('2014-12-25 12:00:00')); // => 1419480000000 (注意:此转换方式在IE中返回NaN!)
分享的两个案例:
点击查看: 《javascript获取系统当前时间的方法》
点击查看: 《javascript电商网站抢购倒计时效果实现》
以上就是本文的全部内容,希望通过这篇文章大家更加了解javascript的Date对象,大家共同进步。