标签:style color 格式 date blog min 时间格式 ber orm
// 格式化时间 function formatTime(date) { //获取年月日 var year = date.getFullYear() var month = date.getMonth() + 1 var day = date.getDate() //获取时分秒 var hour = date.getHours() var minute = date.getMinutes() var second = date.getSeconds(); //格式化日期 return [year, month, day].map(formatNumber).join(‘/‘) + ‘ ‘ + [hour, minute, second].map(formatNumber).join(‘:‘) } // 格式化数字 function formatNumber(n) { n = n.toString() return n[1] ? n : ‘0‘ + n }
标签:style color 格式 date blog min 时间格式 ber orm
原文地址:http://www.cnblogs.com/hcxy/p/7350368.html