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

HTML DOM 입력 주 유형 속성

<시간/>

HTML DOM 입력 주 유형 속성은 입력 주 유형을 반환/설정합니다.

구문

다음은 구문입니다 -

  • 문자열 값 반환
inputWeekObject.type
  • 유형 설정 문자열 값으로
inputWeekObject.type = stringValue

문자열 값

여기서 "stringValue" 다음과 같을 수 있습니다 -

문자열 값 세부정보
입력 유형이 주임을 정의합니다.
날짜/로컬 입력 유형이 datetime-local임을 정의합니다.
확인란 입력 유형이 체크박스임을 정의합니다.
텍스트 입력 유형이 텍스트임을 정의합니다.

예시

입력 주 유형의 예를 살펴보겠습니다. 속성 -

<!DOCTYPE html>
<html>
<head>
<title>Input Week 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>Week-type</legend>
<label for="WeekSelect">Event:
<input type="week" id="WeekSelect">
</label>
<input type="button" onclick="getTypeOfInput()" value="What type of input?">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputWeek = document.getElementById("WeekSelect");
   function getTypeOfInput() {
      divDisplay.textContent = 'Type of input Expected: '+inputWeek.type;
   }
</script>
</body>
</html>

출력

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

'어떤 유형의 입력입니까?'를 클릭하기 전에 버튼 -

HTML DOM 입력 주 유형 속성

'어떤 유형의 입력입니까?'를 클릭한 후 버튼 -

HTML DOM 입력 주 유형 속성