<td class="textAlignRight">${EffectiveDate}</td>
但它的格式为“/ Date(1245398693390)/”.如何更改它以使其格式化为m / dd / yyyy h:mm tt?
模板:
<td class="textAlignRight">${GetDate(EffectiveDate)}</td>
功能:
function GetDate(jsonDate) { var value = new Date(parseInt(jsonDate.substr(6))); return value.getMonth() + 1 + "/" + value.getDate() + "/" + value.getFullYear(); }