0


JS中 new Date() 各方法的用法

JS中 new Date() 各方法的用法

1.new Date() 参数篇
a.返回类型为国标时间,
b.无参数时可以直接返回输出时的时间,
c.有参数时则返回对应时间的国标时间,
d.日期中间的符号可以为,(英文逗号) - / . * = !@ # ¥ % & ,不可为~ · ` ^ + ,(中文逗号) 。

newDate()
Sun Aug 21202215:22:09GMT+0800(中国标准时间)newDate("2022-01-01")
Sat Jan 01202208:00:00GMT+0800(中国标准时间)newDate("2022/01/01")
Sat Jan 01202200:00:00GMT+0800(中国标准时间)newDate("2022.01.01")
Sat Jan 01202200:00:00GMT+0800(中国标准时间)newDate("2022*01*01")
Sat Jan 01202200:00:00GMT+0800(中国标准时间)newDate("Sat Jan 2022")
Sat Jan 01202200:00:00GMT+0800(中国标准时间)

注1:英文括号 都为左括号 或一对括号 ,两个右括号无法识别

newDate("2022(01)01")
Sat Jan 01202200:00:00GMT+0800(中国标准时间)newDate("2022(01(01")
Sat Jan 01202200:00:00GMT+0800(中国标准时间)newDate("2022)01)01")
Invalid Date     // 无效的时间

注2:也可以用六个参数表示日期时间的各个数值
其中第二个参数代表月份减一,即参数为1时,其实是二月,第三个参数为0,代表上个月的最后一天

newDate("2022","01",0,11,12,20)
Mon Jan 31202211:12:20GMT+0800(中国标准时间)

注3:入参为时间戳时 返回对应的国标时间

newDate(1661051533000)//Sun Aug 21 2022 11:12:13 GMT+0800 (中国标准时间)

2.方法篇

查询一个月有多少天

//2022年一月份的天数newDate("2022","01",0).getDate()// 31

日常方法

入参日期的 时间戳
newDate("2022-08-21 11:12:13").getTime()// 1661051533000

入参日期的 星期(注:日:0,一:1,二:2,三:3,四:4,五:5,六:6)
newDate("2022-08-21 11:12:13").getDay()// 0

入参日期的 年
newDate("2022-08-21 11:12:13").getFullYear()// 2022

入参日期的 月 -1newDate("2022-08-21 11:12:13").getMonth()// 7

入参日期的 日
newDate("2022-08-21 11:12:13").getDate()// 21

入参日期的 时
newDate("2022-08-21 11:12:13").getHours()// 11

入参日期的 分
newDate("2022-08-21 11:12:13").getMinutes()// 12

入参日期的 秒
newDate("2022-08-21 11:12:13").getSeconds()// 13

入参日期的 毫秒(注:最大为999)newDate("2022-08-21 11:12:13:999").getMilliseconds()//999

入参日期 距 1900年的年数

newDate("2022-08-21 11:12:13").getYear()// 122

3.国标时间、时间戳、年月日 时分秒的转换

//vue  js 文件handlerZero(param){
    param= param<10?('0'+param):param
},// 国标时间 转 年月日 时分秒formatDateTime(date){let y = date.getFullYear()let m = date.getMonth()+1let d = date.getDate()let h = date.getHours()let h = date.getHours()let mi = date.getMinutes()let ss = date.getSeconds()return y+this.handlerZero(m)+this.handlerZero(d)+this.handlerZero(h)+this.handlerZero(mi)+this.handlerZero(ss)},// 时间戳转年月日 时分秒formatDateTime2(date){let datee =newDate(date)returnthis.formatDateTime(datee)},// 年月日 转 时间戳formatDateTime3(date){let y = date.substring(0,4)let m = date.substring(4,6)let d = date.substring(6,8)let str = y+'-'+m+'-'+d 
    returnnewDate(str).getTime()}

本文转载自: https://blog.csdn.net/xxxxxxxx00772299/article/details/126451348
版权归原作者 Xie_bro777 所有, 如有侵权,请联系我们删除。

“JS中 new Date() 各方法的用法”的评论:

还没有评论