Heim >Web-Frontend >js-Tutorial >Wie füge ich mit JavaScript ein formatiertes Datum zu einem Eingabefeld hinzu?
Sie möchten das aktuelle Datum an ein verstecktes HTML-Feld zur Serverübertragung anhängen:
<code class="html"><input type="hidden" id="DATE" name="DATE" value="WOULD_LIKE_TO_ADD_DATE_HERE"></code>
Lösung:
Verwenden Sie den folgenden JavaScript-Code:
<code class="js">const today = new Date(); const yyyy = today.getFullYear(); let mm = today.getMonth() + 1; // Months start at 0! let dd = today.getDate(); if (dd < 10) dd = '0' + dd; if (mm < 10) mm = '0' + mm; const formattedToday = dd + '/' + mm + '/' + yyyy; document.getElementById('DATE').value = formattedToday;</code>
Zusätzliche Informationen:
Das obige ist der detaillierte Inhalt vonWie füge ich mit JavaScript ein formatiertes Datum zu einem Eingabefeld hinzu?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!