獲取當前日期, 當前年月,時間戳轉換年月日,時間戳轉換年月日時秒,時間戳轉換年月日時分秒。


// 獲取當前日期
function getLocalDate() {
    var times = getYMDHMS(new Date());
    return times.year + "-" + times.month + "-" + times.date;
}

// 獲取當前年月
function getLocalYearMonth() {
    var times = getYMDHMS(new Date());
    return times.year + "-" + times.month;
}
// 根據傳的日期獲取
function getLocalDateTime(time) {
    var times = getYMDHMS(time);
    return times.year + "-" + times.month + "-" + times.date;
}

// 時間戳轉換年月日
function getAppointTime(time) {
    var timett = time * 1000;

    var times = getYMDHMS(new Date(timett));
    return times.year + "-" + times.month + "-" + times.date;
}

// 時間戳轉換年月日時秒
function getAppointTimeSec(time) {
    var timett = time * 1000;

    var times = getYMDHMS(new Date(timett));
    return times.year + "-" + times.month + "-" + times.date + " " + times.hours + ":" + times.minute + ":" + times.second;
}

// 時間戳轉換年月日時分秒
function getAppointTimePro(time) {
    var timett = time * 1000;
    var times = getYMDHMS(new Date(timett));
    return times.year + "-" + times.month + "-" + times.date + " " + times.hours + ":" + times.minute + ':' + times.second;
}

 

//這種格式:2018-12-26 16:35:56
function
changeDateFormat (time) { var myDate = new Date(time); var day=myDate.getDate(); if (day<10)day="0"+day; var YMD=myDate.getFullYear() + "-" + (myDate.getMonth()+1) + "-" + day; var HMS=myDate.getHours() + ":" + myDate.getMinutes() + ":" + myDate.getSeconds(); var YMDHMS=YMD+" "+HMS; return     YMDHMS; }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM