码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript:获取系统当前时间,构造格式化的字符串

时间:2016-04-12 19:25:28      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

var getNowFormatDate = function() {
    var date = new Date();
    var seperator1 = "-";
    var seperator2 = ":";
    var month = date.getMonth() + 1;
    var strDate = date.getDate();
    if (month >= 1 && month <= 9) {
        month = "0" + month;
    }
    if (strDate >= 0 && strDate <= 9) {
        strDate = "0" + strDate;
    }
 var hours = date.getHours();
 if (hours >= 0 && hours <= 9) {
        hours = "0" + hours;
    }
 var minutes = date.getMinutes();
 if (minutes >= 0 && minutes <= 9) {
        minutes = "0" + minutes;
    }
 var seconds = date.getSeconds();
 if (seconds >= 0 && seconds <= 9) {
        seconds = "0" + seconds;
    }
    var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
            + " " + hours + seperator2 + minutes+ seperator2 + seconds;
    return currentdate;
};

JavaScript:获取系统当前时间,构造格式化的字符串

标签:

原文地址:http://www.cnblogs.com/51kata/p/5383612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!