new Date().toDateString() //把 Date 对象的日期部分转换为可读字符串:
new Date().toDateString() + ' 9:00' // " 9:00" 为指定获取时间戳的时间字符串,前面必须加一个空格
new Date(new Date().toDateString() + ' 9:00') //获取时间戳
版权声明:本文为liulei21原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
new Date().toDateString() //把 Date 对象的日期部分转换为可读字符串:
new Date().toDateString() + ' 9:00' // " 9:00" 为指定获取时间戳的时间字符串,前面必须加一个空格
new Date(new Date().toDateString() + ' 9:00') //获取时间戳