"DD-MM-yy": "21-Aug-14"? < /p>
Mein aktueller Code ist wie SO: JavaScript - zum Formatieren der Daten und zum Anzeigen in einer HTML -Tabelle < /p>
Code: Select all
var AuditHTML = "" +
"" +
"" +
"ID" +
"User ID" +
"Action" +
"Date" +
"App ID" +
"Device ID" +
"Notes" +
"" +
"" +
"";
for (s = 0; s < auditList.length; s++) {
if (auditList[s].Date = loggingfrom) {
AuditHTML += "" +
" " + auditList[s].ID + "" +
" " + auditList[s].UserID + "" +
" " + auditList[s].Action + "" +
" " + auditList[s].Date + "" +
" " + auditList[s].AppID + "" +
" " + auditList[s].DeviceID + "" +
" " + auditList[s].Notes + "";
AuditHTML += "";
}
}
AuditHTML += "";
$("#auditContent").html(AuditHTML);
< /code>
HTML - TABLE ZEIGEN < /P>