摘要:
//时间戳转换成指定格式的日期DateTool.IntDatetimeTo = function(time, format){ var testDate = new Date(time); var o = { "M+" : testDate.getMonth()+1, "d+" : testDate.getDate(), "h+" : testDate.getHours(), "m+" : testDate.getMinutes(), "s+" : testDate.getSeconds(),
阅读全文