HTML DOM Input DatetimeLocal 유형 속성은 Input DatetimeLocal의 유형을 반환/설정합니다.
구문
다음은 구문입니다 -
- 문자열 값 반환
inputDatetimeLocalObject.type
- 유형 설정 문자열 값으로
inputDatetimeLocalObject.type = stringValue
문자열 값
여기서 "stringValue" 다음과 같을 수 있습니다 -
문자열 값 | 세부정보 |
---|---|
날짜 | 입력 유형이 날짜임을 정의합니다. |
날짜/로컬 | 입력 유형이 datetime-local임을 정의합니다. |
확인란 | 입력 유형이 확인란임을 정의합니다. |
텍스트 | 입력 유형이 텍스트임을 정의합니다. |
예시
입력 DatetimeLocal 유형의 예를 살펴보겠습니다. 속성 -
<!DOCTYPE html> <html> <head> <title>Input DatetimeLocal type</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>Datetime-Local-type</legend> <label for="datetimeLocalSelect">Inauguration Date-Time : <input type="datetime-local" id="datetimeLocalSelect" value="2020-01-01T10:00"> </label> <input type="button" onclick="getEvent()" value="Where is the event? "> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var inputDatetimeLocal = document.getElementById("datetimeLocalSelect"); function getEvent() { if(inputDatetimeLocal.type === 'datetime-local') divDisplay.textContent = 'Event Inauguration near you'; else divDisplay.textContent = 'Event Inauguration in India'; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
'이벤트는 어디에 있습니까?'를 클릭하기 전에 버튼 -
'이벤트가 어디에 있습니까?'를 클릭한 후 버튼 -