美文网首页
js格式化日期

js格式化日期

作者: 佛系码农 | 来源:发表于2018-07-13 10:34 被阅读0次

    //js获取定制格式日期
    function getFormatDate() {
    var nowDate = new Date();
    var year = nowDate.getFullYear();
    var month = nowDate.getMonth() + 1 < 10 ? "0" + (nowDate.getMonth() + 1) : nowDate.getMonth() + 1;
    var date = nowDate.getDate() < 10 ? "0" + nowDate.getDate() : nowDate.getDate();
    var hour = nowDate.getHours() < 10 ? "0" + nowDate.getHours() : nowDate.getHours();
    var minute = nowDate.getMinutes() < 10 ? "0" + nowDate.getMinutes() : nowDate.getMinutes();
    var second = nowDate.getSeconds() < 10 ? "0" + nowDate.getSeconds() : nowDate.getSeconds();
    //return year + "/" + month + "/" + date + " " + hour + ":" + minute + ":" + second;
    //return year + "/" + month + "/" + date + " " + hour + ":" + minute;
    return year + "/" + month + "/" + date;// + " " + hour + ":" + minute;
    }

    相关文章

      网友评论

          本文标题:js格式化日期

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