// 时间
let date = new Date();
debugger;
let seperator1 = "-";
let seperator2 = ":";
let month = date.getMonth() + 1;
let strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
let mytime = date.getFullYear() + seperator1 + month + seperator1 + strDate
+ " " + date.getHours() + seperator2 + date.getMinutes()
+ seperator2 + date.getSeconds();
相关文章
- 【yoyo】计算2018年1月1日距当天事件还剩多少天,多少小时,多少分钟,多少秒;
- 根据随身固态U盘卷标搜索U盘盘符并打开文件的批处理脚本.bat 徐晓亮 595076941@qq.com 2019年12月19日6点50分
- 对于2018年5月31日的上分的记录
- oracle-按年、月、周、日、时、分 分组查询统计数据,无数据补零(connect by)
- 2019年2月13日09点20分
- 2014年8月2日0时13分22秒
- PHP获取指定时间段之间的 年,月,天,时,分,秒
- java获取两个时间的相隔时间,包括年、月、日、时、分、秒
- 怎样在SQL的datetime类型数据中加减年, 月, 日, 时, 分, 秒?
- 2008年6月15日10点40分