HTML DOM 입력 범위 유형 속성은 해당 유형이 "범위"인 입력 요소와 연결됩니다. 항상 입력 범위 요소에 대한 범위를 반환합니다.
구문
다음은 범위 유형 속성의 구문입니다 -
rangeObject.type
예시
범위 유형 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <body> <h1>Input range type Property</h1> <form> VOLUME <input type="range" id="RANGE1" name="VOL"> </form> <p>Get the above input element type by clicking the below button</p> <button type="button" onclick="rangeType()">GET Type</button> <p id="Sample"></p> <script> function rangeType() { var P=document.getElementById("RANGE1").type; document.getElementById("Sample").innerHTML = "The type for the input field is: "+P ; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
GET 유형 방법을 클릭하면 -
위의 예에서 -
type="range", id="RANGE1", name="VOL" −
인 형식 안에 포함된 입력 필드를 만들었습니다.<form> VOLUME <input type="range" id="RANGE1" name="VOL"> <form>
그런 다음 사용자가 클릭하면 rangeType() 메서드를 실행하는 "GET Type" 버튼을 만들었습니다.
<button type="button" onclick="rangeType()">Get Type</button>
rangeType() 메서드는 getElementById() 메서드를 사용하여 입력 요소를 가져오고 해당 유형 속성 값을 변수 P에 할당합니다. 그런 다음 이 변수는 innerHTML 속성 −
을 사용하여 id가 "Sample"인 단락에 표시됩니다.function rangeType() { var P = document.getElementById(“RANGE1").type; document.getElementById("Sample").innerHTML = "The type for the input field is : "+P; }