Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 입력 재설정 유형 속성

<시간/>

HTML DOM 입력 재설정 유형 속성은 type="reset"인 입력 요소와 연결됩니다. 입력 리셋 요소에 대해 항상 리셋을 반환합니다.

구문

다음은 재설정 유형 속성의 구문입니다 -

resetObject.type

예시

재설정 유형 속성의 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<body>
<h1>Input reset type Property</h1>
<form style="border:solid 2px green;padding:2px">
UserName: <input type="text" id="USR"> <br>
Location: <input type="text" id="Age"> <br><br>
<input type="reset" id="RESET1">
</form>
<p>Get the above input element type by clicking the below button</p>
<button type="button" onclick="resetType()">GET Type</button>
<p id="Sample"></p>
<script>
   function resetType() {
      var P=document.getElementById("RESET1").type;
      document.getElementById("Sample").innerHTML = "The type for the input field is: "+P ;
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

HTML DOM 입력 재설정 유형 속성

GET 유형 속성을 클릭하면 -

HTML DOM 입력 재설정 유형 속성

위의 예에서 -

type=”reset”, id=”RESET1”인 요소를 만들었습니다. 이 버튼을 클릭하면 양식 데이터가 재설정됩니다. 이 버튼은 두 개의 텍스트 필드가 포함된 양식 내부에 있으며 양식에도 인라인 스타일이 적용되어 있습니다. −

<form style="border:solid 2px green;padding:2px">
UserName: <input type="text" id="USR"> <br>
Location: <input type="text" id="Age"> <br><br>
<input type="reset" id="RESET1">
</form>

그런 다음 사용자가 클릭할 때 resetType() 메서드를 실행하는 "GET Type" 버튼을 만들었습니다. -

<button type="button" onclick="resetType()">GET Type</button>

resetType() 메서드는 getElementById() 메서드를 사용하여 입력 요소를 가져오고 해당 유형 속성 값을 변수 P에 할당합니다. 그런 다음 이 변수는 innerHTML 속성 -

을 사용하여 id가 "Sample"인 단락에 표시됩니다.
function getType() {
   var P = document.getElementById("RESET1").type;
   document.getElementById("Sample").innerHTML = "The type for the input field is : "+P;
}