摘要: 所以当你想要 得到当前时间或者格式化一个时间的时候,会出现像 Sat Nov 17 00:01:04 UTC+0800 2012 的格式,为什么呢?因为js默认的时间格式是UTC的格式,那么怎样才能转换成想要的那种 2012-11-17 00:01:14 这种格式呢? 1 Date.prototype.format = function(format) 2 { 3 var o = { 4 "M+" : this.getMonth()+1, //month 5 "d+" : this.getDate(), //day 6 ... 阅读全文
posted @ 2012-11-17 13:26 ゞ修ζ止符℡_R²º¹³ 阅读(704) 评论(0) 推荐(0) 编辑