美文网首页
返回当前的时间(年月日时分秒)

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

作者: 我王某不需要昵称 | 来源:发表于2021-11-27 16:05 被阅读0次

      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 + "年" + month + "月" + day + "日" + hour + "时" + minute + "分" + second + "秒"

            }

    相关文章

      网友评论

          本文标题:返回当前的时间(年月日时分秒)

          本文链接:https://www.haomeiwen.com/subject/xqyxxrtx.html