JS返回当前时间(年、月、日、时、分、秒)

2022/1/2 6:08:10

本文主要是介绍JS返回当前时间(年、月、日、时、分、秒),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

function getDateTime() {
 var date = new Date(),
 year = date.getFullYear(),
 month = date.getMonth() + 1,
 day = date.getDate(),
 hour = date.getHours() + 1,
 minute = date.getMinutes(),
 second = date.getSeconds();
 month = checkTime(month);
 day = checkTime(day);
 hour = checkTime(hour);
 minute = checkTime(minute);
 second = checkTime(second);
 function checkTime(i) {
 if (i <10) {
 i = “0” + i;
 }
 return i;
 }
 return “” + year + “year” + month + “month” + day + “day” + hour + “hour” + minute + “minute” + second + “second”
}

 



这篇关于JS返回当前时间(年、月、日、时、分、秒)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程