ホームページ >ウェブフロントエンド >jsチュートリアル >jsで現在の日付と時刻を取得する方法
JavaScript で現在の日付と時刻を取得するには、次の 2 つの方法があります。 1. Date オブジェクトを使用して新しい Date オブジェクトを作成し、このオブジェクトを使用して日付、月、年、時、分を取得します。そして2番目。 2. JavaScript 組み込み関数を使用して現在のタイムスタンプを取得し、それを日付オブジェクトに変換します。
現在の日付と時刻を取得する
現在の日付と時刻を取得するにはどうすればよいですか?
JavaScript では、現在の日付と時刻を取得する主な方法が 2 つあります。
1. Date オブジェクトを使用します
const now = new Date();
now.getDate()
(date), now.getMonth()
(月)、now.getFull Year()
(年)、now.getHours()
(時間)、now。 getMinutes ()
(分)、now.getSeconds()
(秒) 2. JavaScript 組み込み関数
を使用します。const timestamp = Date.now();
const date = new Date(timestamp );
具体的な例:
現在の日付を取得する:
<code class="js">const now = new Date(); const date = now.getDate(); console.log(date); // 输出当前日期</code>
現在時刻の取得:
<code class="js">const now = new Date(); const hours = now.getHours(); const minutes = now.getMinutes(); const seconds = now.getSeconds(); console.log(`${hours}:${minutes}:${seconds}`); // 输出当前时间</code>
現在のタイムスタンプの取得:
<code class="js">const timestamp = Date.now(); console.log(timestamp); // 输出当前时间戳</code>
以上がjsで現在の日付と時刻を取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。