JavaScript中Date对象的方法解析
上篇文章讲到了JavaScript的Date对象,对Date对象的创建和属性进行了讲解,这篇博客我们来讲一讲Date对象的方法有哪些。
1.获取日期的方法
// 获取当前的日期varoDate=newDate(); // 方法 描述// getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。console.log(oDate.getDate()); // getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。console.log(oDate.getDay());// 0代表周日// getFullYear() 从 Date 对象以四位数字返回年份。console.log(oDate.getFullYear()); // getMonth() 从 Date 对象返回月份 (0 ~ 11)。console.log(oDate.getMonth());// 一月份 是 0// getHours() 返回 Date 对象的小时 (0 ~ 23)。console.log(oDate.getHours()); // getMinutes() 返回 Date 对象的分钟 (0 ~ 59)。console.log(oDate.getMinutes()); // getSeconds() 返回 Date 对象的秒数 (0 ~ 59)。console.log(oDate.getSeconds()); // getMilliseconds() 返回 Date 对象的毫秒(0 ~ 999)。console.log(oDate.getMilliseconds()); // getTime() 返回 1970 年 1 月 1 日至今的毫秒数。console.log(oDate.getTime());
2.获取世界日期
// 获取世界时间的方法 格林威治 本初子午线// getUTCDate() 根据世界时从 Date 对象返回月中的一天 (1 ~ 31)。console.log(oDate.getUTCDate()); // getUTCDay() 根据世界时从 Date 对象返回周中的一天 (0 ~ 6)。console.log(oDate.getUTCDay()); // getUTCFullYear() 根据世界时从 Date 对象返回四位数的年份。// getUTCMonth() 根据世界时从 Date 对象返回月份 (0 ~ 11)。// getUTCHours() 根据世界时返回 Date 对象的小时 (0 ~ 23)。console.log(oDate.getUTCHours()); // getUTCMinutes() 根据世界时返回 Date 对象的分钟 (0 ~ 59)。// getUTCSeconds() 根据世界时返回 Date 对象的秒钟 (0 ~ 59)。// getUTCMilliseconds() 根据世界时返回 Date 对象的毫秒(0 ~ 999)。
3.设置日期
// setDate() 设置 Date 对象中月的某一天 (1 ~ 31)。oDate.setDate(13); console.log(oDate); // setFullYear() 设置 Date 对象中的年份(四位数字)。// setHours() 设置 Date 对象中的小时 (0 ~ 23)。// setMilliseconds() 设置 Date 对象中的毫秒 (0 ~ 999)。// setMinutes() 设置 Date 对象中的分钟 (0 ~ 59)。// setMonth() 设置 Date 对象中月份 (0 ~ 11)。oDate.setMonth(0); console.log(oDate); // setSeconds() 设置 Date 对象中的秒钟 (0 ~ 59)。// setTime() setTime() 方法以毫秒设置 Date 对象。// setUTCDate() 根据世界时设置 Date 对象中月份的一天 (1 ~ 31)。// setUTCFullYear() 根据世界时设置 Date 对象中的年份(四位数字)。// setUTCHours() 根据世界时设置 Date 对象中的小时 (0 ~ 23)。// setUTCMilliseconds() 根据世界时设置 Date 对象中的毫秒 (0 ~ 999)。// setUTCMinutes() 根据世界时设置 Date 对象中的分钟 (0 ~ 59)。// setUTCMonth() 根据世界时设置 Date 对象中的月份 (0 ~ 11)。// setUTCSeconds() setUTCSeconds() 方法用于根据世界时 (UTC) 设置指定时间的秒字段。
4.转换为字符串形式
// toString() 转换为字符串console.log(oDate.toString()); // toDateString() 把 Date 对象的日期部分转换为字符串。console.log(oDate.toDateString()); // toTimeString() 把 Date 对象的时间部分转换为字符串。console.log(oDate.toTimeString()); // toUTCString() 根据世界时,把 Date 对象转换为字符串。console.log(oDate.toUTCString()); // toLocaleString() 据本地时间格式,把 Date 对象转换为字符串。console.log(oDate.toLocaleString()); // toLocaleDateString() 根据本地时间格式,把 Date 对象的日期部分转换为字符串。console.log(oDate.toLocaleDateString()); // toLocaleTimeString() 根据本地时间格式,把 Date 对象的时间部分转换为字符串。console.log(oDate.toLocaleTimeString()); // toJSON() 以 JSON 数据格式返回日期字符串。
5.其他方法
// getTimezoneOffset() 返回本地时间与格林威治标准时间 (GMT) 的分钟差。console.log(oDate.getTimezoneOffset()); // parse() 返回1970年1月1日午夜到指定日期(字符串)的毫秒数。console.log(Date.parse("1970-1-2")); // UTC() 根据世界时返回 1970 年 1 月 1 日 到指定日期的毫秒数。console.log(Date.UTC(1970,1,2)); // valueOf() 返回Date对象的原始值console.log(oDate.valueOf());
注意 :js中Date对象的方法看起来有很多,但实际上真正去记忆时发现只有10个左右,需要分清本地日期和世界日期的区别,然后就是 get 和 set 的区别。
视频讲解链接:
https://www.bilibili.com/video/BV1Wv411z7yd/