标签:nts class get 图片 mil http minutes 日期格 转化
function ChangeDateFormat(cellval){ var date = new Date(parseInt(cellval.replace("/Date(","").replace(")/",""),10)); var month =date.getMonth() + 1 <10 ? "0" + (date.getMonth()+1):date.getMonth() +1; var currentDay = date.getDate() <10 ? "0" +date.getDate() : date.getDate(); var currentHour = date.getHours() < 10 ? "0" +date.getHours() :date.getHours(); var currentMinute = date.getMinutes() < 10 ? "0" +date.getMinutes() :date.getMinutes(); var currentSecond = date.getSeconds() < 10 ? "0" +date.getSeconds() :date.getSeconds(); return date.getFullYear() + ‘-‘ + month + "-" + currentDay + " " + currentHour+ ":" + currentMinute + ":" + currentSecond; }
‘
标签:nts class get 图片 mil http minutes 日期格 转化
原文地址:https://www.cnblogs.com/xifengmo/p/10972820.html