将Date类型格式化为”yyyy/MM/dd HH:mm:ss”
    函数代码如下:

    //Date的prototype 属性可以向对象添加属性和方法。
    Date.prototype.Format = function(fmt){ var o = { “M+”: this.getMonth()+1, “d+”: this.getDate(), “H+”: this.getHours(), “m+”: this.getMinutes(), “s+”: this.getSeconds(), “S+”: this.getMilliseconds()

    1. };
    2. //因为date.getFullYear()出来的结果是number类型的,所以为了让结果变成字符串型,下面有两种方法:
    3. if(/(y+)/.test(fmt)){
    4. //第一种:利用字符串连接符“+”给date.getFullYear()+"",加一个空字符串便可以将number类型转换成字符串。
    5. fmt=fmt.replace(RegExp.$1,(this.getFullYear()+"").substr(4-RegExp.$1.length));
    6. }
    7. for(var k in o){
    8. if (new RegExp("(" + k +")").test(fmt)){
    9. //第二种:使用String()类型进行强制数据类型转换String(date.getFullYear()),这种更容易理解。
    10. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(String(o[k]).length)));
    11. }
    12. }
    13. return fmt;

    };

    使用示例:
    var date=new Date().Format(“yyyy/MM/dd HH:mm:ss”);
    console.log( date);
    参考博客:http://www.cnblogs.com/zhangpengshou/archive/2012/07/19/2599053.html
    方法1:这个很不错,好像是 csdn 的 Meizz 写的:


    // 对Date的扩展,将 Date 转化为指定格式的String

    // 月(M)、日(d)、小时(H)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,

    // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)

    // 例子:

    // (new Date()).Format(“yyyy-MM-dd HH:mm:ss.S”) ==> 2006-07-02 08:09:04.423

    // (new Date()).Format(“yyyy-M-d H:m:s.S”) ==> 2006-7-2 8:9:4.18

    Date.prototype.Format = function(fmt)

    { //author: meizz

    var o = {

    “M+” : this.getMonth()+1, //月份

    “d+” : this.getDate(), //日

    “h+” : this.getHours(), //小时

    “m+” : this.getMinutes(), //分

    “s+” : this.getSeconds(), //秒

    “q+” : Math.floor((this.getMonth()+3)/3), //季度

    “S” : this.getMilliseconds() //毫秒

    };

    if(/(y+)/.test(fmt))

    fmt=fmt.replace(RegExp.$1, (this.getFullYear()+””).substr(4 - RegExp.$1.length));

    for(var k in o)

    if(new RegExp(“(“+ k +”)”).test(fmt))

    fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : ((“00”+ o[k]).substr((“”+ o[k]).length)));

    return fmt;

    }

    调用方法:
    var time1 = new Date().format(“yyyy-MM-dd HH:mm:ss”);
    var time2 = new Date().format(“yyyy-MM-dd”);
    方法二:

    JavaScript" type="text/javascript"><!—

    /**

    • 对Date的扩展,将 Date 转化为指定格式的String

    • 月(M)、日(d)、12小时(h)、24小时(H)、分(m)、秒(s)、周(E)、季度(q) 可以用 1-2 个占位符

    • 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)

    • eg:

    • (new Date()).pattern(“yyyy-MM-dd hh:mm:ss.S”) ==> 2006-07-02 08:09:04.423

    • (new Date()).pattern(“yyyy-MM-dd E HH:mm:ss”) ==> 2009-03-10 二 20:09:04

    • (new Date()).pattern(“yyyy-MM-dd EE hh:mm:ss”) ==> 2009-03-10 周二 08:09:04

    • (new Date()).pattern(“yyyy-MM-dd EEE hh:mm:ss”) ==> 2009-03-10 星期二 08:09:04

    • (new Date()).pattern(“yyyy-M-d h:m:s.S”) ==> 2006-7-2 8:9:4.18

    */

    Date.prototype.pattern=function(fmt) {

    var o = {

    “M+” : this.getMonth()+1, //月份

    “d+” : this.getDate(), //日

    “h+” : this.getHours()%12 == 0 ? 12 : this.getHours()%12, //小时

    “H+” : this.getHours(), //小时

    “m+” : this.getMinutes(), //分

    “s+” : this.getSeconds(), //秒

    “q+” : Math.floor((this.getMonth()+3)/3), //季度

    “S” : this.getMilliseconds() //毫秒

    };

    var week = {

    “0” : “/u65e5”,

    “1” : “/u4e00”,

    “2” : “/u4e8c”,

    “3” : “/u4e09”,

    “4” : “/u56db”,

    “5” : “/u4e94”,

    “6” : “/u516d”

    };

    if(/(y+)/.test(fmt)){

    1. fmt=fmt.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length));

    }

    if(/(E+)/.test(fmt)){

    1. fmt=fmt.replace(RegExp.$1, ((RegExp.$1.length>1) ? (RegExp.$1.length>2 ? "/u661f/u671f" : "/u5468") : "")+week[this.getDay()+""]);

    }

    for(var k in o){

    1. if(new RegExp("("+ k +")").test(fmt)){
    2. fmt = fmt.replace(RegExp.$1, (RegExp.$1.length==1) ? (o[k]) : (("00"+ o[k]).substr((""+ o[k]).length)));
    3. }

    }

    return fmt;

    }

    var date = new Date();

    window.alert(date.pattern(“yyyy-MM-dd hh:mm:ss”));

    // —>