首页 > Web开发 > 详细

jquery日期格式化

时间:2015-07-23 17:23:29      阅读:166      评论:0      收藏:0      [点我收藏+]
function dateFormat(date, format){

    date = new Date();
    var map = {
        "YY": date.getYear(),
        "M": date.getMonth() + 1//月份
        "d": date.getDate(), //
        "h": date.getHours(), //小时
        "m": date.getMinutes(), //
        "s": date.getSeconds(), //秒  
        "q": Math.floor((date.getMonth() + 3) / 3), //季度
        "S": date.getMilliseconds() //毫秒
    };

    format = format.replace(/([YMdhmsqS])+/g, function(all, t){
        var v = map[t];
        if (v !== undefined) {
            if (all.length > 1) {
                v = "0" + v;
                v = v.substr(v.length - 2);
            }
            return v;
        }
        else if (t === "Y") {
            return (date.getFullYear() + "").substr(4 - all.length);
        }
        return all;
    });
    return format;
}
 

 var nowdate = dateFormat(Date(),YYYY-MM-dd);

alert(nowdate);
 

jquery日期格式化

原文:http://www.cnblogs.com/qhorse/p/4670883.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!