本文主要是介绍js获取年月日时分秒及星期几,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最近发现好像写这种基础博客的很少,文章大部分都是几年前的,之前对于时间这块都是直接使用day.js 来处理,废话不多说,直接进入正题
const now = new Date();//初始值
now.getFullYear()//年
now.getMonth() + 1 //月
now.getDate() //日
now.getHours()//时
now.getMinutes()//分
now.getSeconds()//秒
获取周几:
"星期" + "日一二三四五六".charAt(new Date().getDay());
补零:
//时分秒
(now.getHours() < 10 ? "0" : "") + now.getHours()+ ':' + (now.getMinutes() < 10 ? "0" : "") + now.getMinutes()+ ':' + (now.getSeconds() < 10 ? "0" : "") + now.getSeconds();
//月日
(now.getMonth() + 1 < 10 ? "0" : "") + (now.getMonth() + 1) + '月'+ (now.getDate() < 10 ? "0" : "") + now.getDate() + '日'
简洁高效的写法,而不是跟之前一样进行切割拼接
这篇关于js获取年月日时分秒及星期几的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!