HTML DOM 입력 시간 단계 속성은 초 동안만 유효한 간격을 결정합니다.
구문
다음은 구문입니다 -
- 숫자 값 반환
inputTimeObject.step
- 단계 속성 설정 숫자 값으로
inputTimeObject.step = number
매개변수
매개변수 번호 값 -
초 | 유효한 값은 60을 완벽하게 나누는 숫자로 구성됩니다(예:10,15,20) |
예시
입력 시간 단계 의 예를 살펴보겠습니다. 속성 -
<!DOCTYPE html> <html> <head> <title>Input Time step</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>Time-step</legend> <label for="TimeSelect">Time: </label> <input type="time" id="TimeSelect" step="2"> <input type="button" onclick="changeStep(20)" value="Step to 20"> <input type="button" onclick="changeStep(30)" value="Step to 30"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var inputTime = document.getElementById("TimeSelect"); divDisplay.textContent = 'The current step is: '+inputTime.step; function changeStep(myStep) { inputTime.step = myStep; divDisplay.textContent = 'The current step is: '+inputTime.step; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
'20단계로 이동' 클릭 버튼 -
'30단계로 이동' 클릭 버튼 -