当前时间
export const nowTime = () => {
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth();
const date = now.getDate() >= 10 ? now.getDate() : ('0' + now.getDate());
const hour = now.getHours() >= 10 ? now.getHours() : ('0' + now.getHours());
const miu = now.getMinutes() >= 10 ? now.getMinutes() : ('0' + now.getMinutes());
const sec = now.getSeconds() >= 10 ? now.getSeconds() : ('0' + now.getSeconds());
return +year + "年" + (month + 1) + "月" + date + "日 " + hour + ":" + miu + ":" + sec;
}
格式化时间
export const dateFormater = (formater, time) => {
let date = time ? new Date(time) : new Date(),
Y = date.getFullYear() + '',
M = date.getMonth() + 1,
D = date.getDate(),
H = date.getHours(),
m = date.getMinutes(),
s = date.getSeconds();
return formater.replace(/YYYY|yyyy/g, Y)
.replace(/YY|yy/g, Y.substr(2, 2))
.replace(/MM/g,(M<10 ? '0' : '') + M)
.replace(/DD/g,(D<10 ? '0' : '') + D)
.replace(/HH|hh/g,(H<10 ? '0' : '') + H)
.replace(/mm/g,(m<10 ? '0' : '') + m)
.replace(/ss/g,(s<10 ? '0' : '') + s)
}
// dateFormater('YYYY-MM-DD HH:mm:ss')
// dateFormater('YYYYMMDDHHmmss')
以上是编程学习网小编为您介绍的“JavaScript开发小技巧之各种时间操作”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:JavaScript开发小技巧之各种时间操作
基础教程推荐
猜你喜欢
- 一文详解e2e测试之cypress的使用 2024-01-07
- span 右浮动折行 解决ie6/7中span右浮动折行问题 2023-12-23
- httpclient模拟登陆具体实现(使用js设置cookie) 2024-03-20
- 详解ES6 中的迭代器和生成器 2022-10-21
- js相册效果代码(点击创建即可) 2023-12-02
- ajax编写简单的登录页面 2023-01-31
- 用HTML制作一个好看的网页模板 2023-10-28
- JS跨域总结 2024-01-05
- 一样的table?不一样的table(可编辑状态table) 2024-01-22
- 用CSS实现文字变图象特效 2022-10-16