欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 获取当前时间

程序员文章站 2022-05-30 14:04:42
...
function getDate() {
        // 获取当前日期
        var date = new Date();
        // 获取当前月份
        var nowMonth = date.getMonth() + 1;
        // 获取当前是几号
        var strDate = date.getDate();
        // 添加分隔符“-”
        var seperator = "-";
        // 对月份进行处理,1-9月在前面添加一个“0”
        if (nowMonth >= 1 && nowMonth <= 9) {
            nowMonth = "0" + nowMonth;
        }
        // 对月份进行处理,1-9号在前面添加一个“0”
        if (strDate >= 0 && strDate <= 9) {
            strDate = "0" + strDate;
        }

        // 最后拼接字符串,得到一个格式为(yyyy-MM-dd)的日期
        var nowDate =date.getMonth() + seperator+ nowMonth + seperator + strDate;
        return nowDate;
    }