#JavaScript で現在の日付と時刻を取得する方法JavaScript では、現在の日付と時刻を取得する次のメソッドがあります。 1. Date オブジェクトを使用します。 #DateJavaScript で現在の日付と時刻を取得するには 3 つの方法があります。Date オブジェクトを使用して、date.getDate()、date.getMonth() などの日付と時刻のプロパティを提供します。 Date.now() メソッドを使用して、エポックからのミリ秒数を返します。年、月、日、時、分、秒、ミリ秒のタイム ゾーン オフセットなどの情報を含む ISO 標準形式の文字列を使用します。
オブジェクトは日付と時刻を表します。新しい Date オブジェクトは次の方法で作成できます: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="js">const date = new Date();</code></pre><div class="contentsignin">ログイン後にコピー</div></div>
このオブジェクトには現在の日付と時刻に関する情報が含まれており、次のプロパティを通じてアクセスできます:
<code class="js">const msSinceEpoch = Date.now();</code>
3. ISO 標準形式文字列の使用
#年
<code class="js">const isoString = date.toISOString();</code>
現在の日付と時刻を取得するサンプル コード:
<code class="js">const date = new Date(); const fullDate = `${date.getDate()}/${date.getMonth() + 1}/${date.getFullYear()}`; const fullTime = `${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`; console.log(`Current date: ${fullDate}`); console.log(`Current time: ${fullTime}`);</code>
<code>Current date: 31/12/2023 Current time: 12:00:00</code>
以上がjsで現在の日付と時刻を取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。