JavaScript에서 현재 날짜와 시간을 가져오는 방법에는 두 가지가 있습니다. 1. Date 개체를 사용하여 새 Date 개체를 만들고 이 개체를 사용하여 날짜, 월, 연도, 시, 분, 초를 가져옵니다. 2. JavaScript 내장 함수를 사용하여 현재 타임스탬프를 가져와서 날짜 개체로 변환합니다.
현재 날짜와 시간 가져오기
현재 날짜와 시간을 가져오는 방법은 무엇인가요?
JavaScript에는 현재 날짜와 시간을 가져오는 두 가지 주요 방법이 있습니다.
1. Date 개체
const now = new Date();
const now = new Date();
now.getDate()
(日期)、now.getMonth()
(月份)、now.getFullYear()
(年份)、now.getHours()
(小时)、now.getMinutes()
(分钟)、now.getSeconds()
(秒)2、使用 JavaScript 内置函数
const timestamp = Date.now();
const date = new Date(timestamp);
now.getDate()
(날짜), now.getMonth()
(월), now. getFullYear( )
(연도), now.getHours()
(시간), now.getMinutes()
(분), now.getSeconds( ) (초)
2. JavaScript 내장 함수
를 사용하여 현재 타임스탬프를 가져옵니다. const timestamp = Date.now();
Convert 날짜 객체에 대한 타임스탬프: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 중국어 웹사이트의 기타 관련 기사를 참조하세요!