javascript如何实现时间格式化

506 ℃

如何利用javascript语法实现时间格式化,下面web建站小编给大家简单介绍一下!​

获取当前时间:

let currentTime = new Date()
let endTime = `${ currentTime.getFullYear()}-${ (currentTime.getMonth() + 1) > 9 ? (currentTime.getMonth() + 1) : '0' + (currentTime.getMonth() + 1)}-${ (currentTime.getDate() + 1) > 9 ? (currentTime.getDate() + 1) : '0' + (currentTime.getDate() + 1)} 23:59:59`

获取七天前时间:

let beforeTime = new Date((new Date()).getTime() - 1000 * 60 * 60 * 24 * 7)
let startTime = `${ beforeTime.getFullYear()}-${ (beforeTime.getMonth() + 1) > 9 ? (beforeTime.getMonth() + 1) : '0' + (beforeTime.getMonth() + 1)}-${ (beforeTime.getDate() + 1) > 9 ? (beforeTime.getDate() + 1) : '0' + (beforeTime.getDate() + 1)} 00:00:00`

javascript语法如何把json文件输出到html页面上

javascript语法中不等于null和空字符串的3种判断方式

javascript语法读取文本文件代码(PHP代码读取文本文件)

javascript语法中document对象基本介绍

javascript语法对当前链接URL对象处理

标签: javascript语法, 格式化时间

上面是“javascript如何实现时间格式化”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_4780.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

js实现多行一起滚动
jquery利用插件实现局部打印,完成后执行回调方法
js如何获取字符串中每个字符出现的次数
wordpress怎么单独设置关键词(description)和描述(keywords)
Vue项目开发如何添加请求拦截器和响应拦截器