千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:重庆千锋IT培训  >  技术干货  >  JavaScript时间对象全解析(下)

JavaScript时间对象全解析(下)

来源:千锋教育
发布人:lxl
时间: 2023-05-17 11:30:46

JavaScript时间对象

  时间对象常用方法—设置

  设置年 setFullYear

  ●作用:单独设置时间对象内的年份信息

  ●语法:时间对象.setFullYear(年份信息)

  ●返回值:返回一个修改后的时间

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:24:27 GMT+0800 (中国标准时间)

time.setFullYear(2019)
console.log(time) //Mon Sep 30 2019 14:24:27 GMT+0800 (中国标准时间)

   设置月 setMonth

  ●作用:单独设置时间对象内的月份信息

  ●语法:时间对象.setMonth(月份信息)

  ●返回值:返回一个修改后的时间

  ○注意:0 表示 1 月份, 11 表示 12 月份

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setMonth(11)
console.log(time) //Thu Dec 30 2021 14:33:33 GMT+0800 (中国标准时间)

   设置天 setDate

  ●作用:单独设置时间对象内的日期信息

  ●语法:时间对象.setDate(日期信息)

  ●返回值:返回一个修改后的时间

  ○月份是1--31

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setDate(11)
console.log(time) //Sat Sep 11 2021 14:39:03 GMT+0800 (中国标准时间)

   设置小时 setHours

  ●作用:单独设置时间对象内的小时信息

  ●语法:时间对象.setHours(小时信息)

  ●返回值:返回一个修改后的时间

  ○时间是0~~23

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setHours(22)
console.log(time) //Thu Sep 30 2021 22:45:59 GMT+0800 (中国标准时间)

   设置分钟 setMinutes

  ●作用:单独设置时间对象内的分钟信息

  ●语法:时间对象.setMinutes(分钟信息)

  ●返回值:返回一个修改后的时间

  ○时间是0~~59

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setMinutes(45)
console.log(time) //Thu Sep 30 2021 14:45:52 GMT+0800 (中国标准时间)

   设置秒 setSeconds

  ●作用:单独设置时间对象内的秒钟信息

  ●语法:时间对象.setSeconds(秒钟信息)

  ●返回值:返回一个修改后的时间

  ○时间是0~~59

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setSeconds(55)
console.log(time) //Thu Sep 30 2021 14:52:55 GMT+0800 (中国标准时间)

   设置毫秒 setMilliseconds

  ●作用:单独设置时间对象内的毫秒信息

  ●语法:时间对象.setMilliseconds(毫秒信息)

  ●返回值:返回一个修改后的时间

  ○时间是0~~999

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setMilliseconds(1000)
console.log(time.setMilliseconds(1000)) //1632985218000

   设置时间戳 setTime

  ●作用:用来这是时间戳

  ●语法:时间对象.setTime(毫秒信息)

  ●返回值:返回一个格林威治时间到设置时间的一个时间

var time = new Date()
console.log(time) //Thu Sep 30 2021 14:33:33 GMT+0800 (中国标准时间)

time.setTime(1632985218000)
console.log(time) //Thu Sep 30 2021 15:00:18 GMT+0800 (中国标准时间)

time.setTime(2000)
console.log(time);//Thu Jan 01 1970 08:00:02 GMT+0800 (中国标准时间)

   Date 内对象内的一些其他方法

  ●时间对象的其它方法

  ○toString() :将Date转换为一个'年月日 时分秒'字符串

  ○toLocaleString() :将Date转换为一个'年月日 时分秒'的本地格式字符串

  ○toDateString() :将Date转换为一个'年月日'字符串

  ○toLocaleDateString() :将Date转换为一个'年月日'的本地格式字符串

  ○toTimeString() :将Date转换为一个'时分秒'字符串

  ○toLocaleTimeString() :将Date转换为一个'时分秒'的本地格式字符串

  ○valueOf() :与getTime()一样, 返回一个毫秒数从现在到格林威治时间的毫秒数

// 时间对象的其它方法
var time = new Date();
console.log(time); // Tue Feb 21 2023 15:10:38 GMT+0800 (中国标准时间)
console.log(time.()); // Tue Feb 21 2023 15:10:38 GMT+0800 (中国标准时间)
console.log(time.toLocaleString()); // 2023/2/21 15:10:38

console.log(time.toDateString()); // Tue Feb 21 2023

console.log(time.toLocaleDateString()); // 2023/2/21

console.log(time.toTimeString()); // 15:10:38 GMT+0800 (中国标准时间)
console.log(time.toLocaleTimeString()); // 15:10:38

console.log(time.valueOf()); // 1676963438332

   ●静态方法

  ○Date.now() :返回一个毫秒数从现在到格林威治时间的毫秒数

  ○Date.parse(dateStr) : 把字符串转换为Date对象 ,然后返回此Date对象与格林威治时间的毫秒数

// 静态方法
console.log(Date.now()) // 1676963759879
console.log(Date.parse('2023/2/20 12:00:00')); // 1676865600000
console.log(Date.parse('2023-2-20 12:00:00')); // 1676865600000

   案例 - 封装时间差函数

// 定一两个时间
var time = new Date()
var time1 = new Date('2021-11-23 00: 00: 00')
// 既然要分装成一个函数 就要先定义一个函数
function diffTime(time, time1) {
// 定义一个空对象
var obj = {}
// 首先我们要拿到传进来的两个时间 但是我们不知道那个是大一点儿的时间 那个是小一点儿的时间
var subMs = Math.abs(time - time1)
// 这里我们先把毫秒转成秒
var sub = Math.ceil(subMs / 1000)
// 计算我们有多少天 多少小时多少分钟和多少秒
var day = parseInt(sub / (24 * 60 * 60))
var hours = parseInt(sub % (24 * 60 * 60) / (60 * 60))
var minutes = parseInt(sub % (60 * 60) / 60)
var seconds = sub % 60
// 接下来就是把我们拿到的添加到对象里面
obj.day = day
obj.hours = hours
obj.minutes = minutes
obj.seconds = seconds
// 最后我们要把这个空对象返回出去
return obj
}
// 首次代码优化
var time1 = new Date()
var time2 = new Date('2021-12-12 00:00:00')
function diffTime(time1, time2) {
var obj = {}
var subMs = Math.abs(time1 - time2)
var sub = Math.ceil(subMs / 1000)
var day = parseInt(sub / (24 * 60 * 60))
var hours = parseInt(sub % (24 * 60 * 60) / (60 * 60))
var minutes = parseInt(sub % (60 * 60) / 60)
var seconds = sub % 60
obj.day = day
obj.hours = hours
obj.minutes = minutes
obj.seconds = seconds
return obj
}
// 使用
var res = diffTime(time, time1)
console.log(res);
// 再次代码优化
var time1 = new Date()
var time2 = new Date('2021-12-12 00:00:00')
function diffTime(time1, time2) {
var sub = Math.ceil(Math.abs(time1 - time2) / 1000)
return {
day: parseInt(sub / (24 * 60 * 60)),
hours: parseInt(sub % (24 * 60 * 60) / (60 * 60)),
minutes: parseInt(sub % (60 * 60) / 60),
seconds: sub % 60
}
}
// 使用
var res = diffTime(time1, time2)
console.log(res);
// 代码优化
function diffTime(time, time1) {
var sub = Math.ceil(Math.abs(time - time1) / 1000)
return obj = {
day: parseInt(sub / (24 * 60 * 60)),
hours: parseInt(sub % (24 * 60 * 60) / (60 * 60)),
minutes: parseInt(sub % (60 * 60) / 60),
seconds: sub % 60
}
}
var res = diffTime(time, time1)
console.log(res);

 

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

如何进行mysql数据备份?

2023-05-30

从零开始学Java之Java中的内部类是怎么回事?

2023-05-29

什么是事件流以及事件流的传播机制 ?

2023-05-29

最新文章NEW

什么是servlet的生命周期?servlet请求处理流程是怎样的?

2023-05-30

在java中,super关键字怎样使用

2023-05-29

什么是JavaScript伪数组?

2023-05-25

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>