1. 程式人生 > >js 獲取當前時間

js 獲取當前時間

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;
    }