赞
踩
- //方法一
-
- let time = new Date();
- // 获取年
- time.getFullYear()'年'
- // 获取月
- time.getMonth()'月'
- // 获取日
- time.getDate()'日'
- // 获取时
- time.getHours()
- // 获取分
- time.getMinutes()
- // 获取秒
- time.getSeconds()
-
- let time = new Date();
- let timeInfo =
- (time.getFullYear()+'年'+time.getMonth()+'月'+time.getDate()+'日'+time.getHours()+':'+time.getMinutes()+':'+time.getSeconds())
-
- console.log(timeInfo);
- function getDateYYYYMMddHHMMSS(format ){
- const date = new Date();
- const month = (date.getMonth() + 1).toString().padStart(2, '0');
- const strDate = date.getDate().toString().padStart(2, '0');
- const starHours = date.getHours().toString().padStart(2, '0');
- const starMinutes = date.getMinutes().toString().padStart(2, '0');
- const starSeconds = date.getSeconds().toString().padStart(2, '0');
- format = `${date.getFullYear()}-${month}-${strDate}
- ${starHours}:${starMinutes}:${starSeconds}`;
- return format
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。