javascript两行代码按指定格式输出日期时间

javascript两行代码按指定格式输出日期时间,具体看代码:

javascript两行代码按指定格式输出日期时间
javascript两行代码按指定格式输出日期时间
// <summary>
// 格式化显示日期时间
// </summary>
// <param name="x">待显示的日期时间,例如new Date()</param>
// <param name="y">需要显示的格式,例如yyyy-MM-dd hh:mm:ss</param>
function date2str(x,y) {
    var z ={y:x.getFullYear(),M:x.getMonth()+1,d:x.getDate(),h:x.getHours(),m:x.getMinutes(),s:x.getSeconds()};
    return y.replace(/(y+|M+|d+|h+|m+|s+)/g,function(v) {return ((v.length>1?"0":"")+eval(‘z.‘+v.slice(-1))).slice(-(v.length>2?v.length:2))});
}
alert(date2str(new Date(),"yy-M-d h:m:s"));
alert(date2str(new Date(),"yyyy-MM-d h:m:s"));
javascript两行代码按指定格式输出日期时间
javascript两行代码按指定格式输出日期时间

javascript两行代码按指定格式输出日期时间,布布扣,bubuko.com

javascript两行代码按指定格式输出日期时间

上一篇:查看MySQL 字段KEY值---PRI, UNI, MUL


下一篇:Java程序StringBuffer的用法