예제 3-15. 시간 정보 입력 폼 요소 활용, 시간 정보 입력
WEB/HTML5-CONCEPT 2017. 11. 4. 18:45 |1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!DOCTYPE html> <html> <head> <title>시간 정보를 입력하는 폼 활용</title></head> <body> <h3>시간 정보 입력 HTML5 폼 요소들</h3> 초기 세팅 : 2016년 9월 1일 밤 9시 30분(10초 32)<br> 시간을 변경해 보세요 <hr> <form> <pre> // 개발자 포맷 그대로 출력하기 month : <input type="month" value="2016-09"><br> week : <input type="week" value="2016-W36"><br> date : <input type="date" value="2016-09-01"><br> time : <input type="time" value="21:30"><br> local: <input type="datetime-local" value="2016-09-01T21:30:10.32"><br> </pre> </form> </body> </html> | cs |
'WEB > HTML5-CONCEPT' 카테고리의 다른 글
예제 3-16. 생일 날짜 입력 받기 (0) | 2017.11.04 |
---|---|
3. 폼 요소의 종류 (0) | 2017.11.04 |
예제 3-14. 색 입력, <input type="color">, 컬러 다이얼로그로 색 입력 응용 (0) | 2017.11.04 |
예제 3-13. 선택형 요소의 캡션을 <label>로 감싸기, <label>로 라디오버튼에 캡션 만들기 (0) | 2017.11.04 |
예제 3-12 <label>태그를 이용한 로그인 폼 만들기 (0) | 2017.11.04 |