<label for="user-datetime">날짜와 시간 선택</label>
<input type="datetime-local" id="user-datetime">
실제 적용된 모습
<label for="user-time-1">분 단위까지 선택</label>
<input type="datetime-local" id="user-time-1" step="120"> <!-- 120은 60의 배수 -->
<hr>
<label for="user-time-2">초 단위까지 선택</label>
<input type="datetime-local" id="user-time-2" step="1"> <!-- 1은 60으로 나누었을 때 나머지가 발생 -->
실제 적용된 모습
<!-- 2013년 05월 13일 09시 12분(2013-05-13T09:12) -->
<input type="datetime-local" value="2013-05-13T09:12">
<hr>
<!-- 2013년 05월 13일 09시 12분 05초(2013-05-13T09:12:05) -->
<input type="datetime-local" value="2013-05-13T09:12:05">
실제 적용된 모습
<!-- value: 2013년 05월 13일 09시 12분(2013-05-13T09:12) -->
<!-- min: 2013년 05월 13일 08시 00분(2013-05-13T08:00) -->
<input
    type="datetime-local"
    value="2013-05-13T09:12"
    min="2013-05-13T08:00">
실제 적용된 모습
<!-- value: 2013년 05월 13일 09시 12분(2013-05-13T09:12) -->
<!-- max: 2013년 05월 13일 10시 00분(2013-05-13T10:00) -->
<input
    type="datetime-local"
    value="2013-05-13T09:12"
    max="2013-05-13T10:00">
실제 적용된 모습

마지막 업데이트 정보: 2024-12-10