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

HTML DOM 입력 주 readOnly 속성

<시간/>

HTML DOM 입력 주 readOnly 속성은 입력 주를 수정할 수 있는지 여부를 설정/반환합니다.

구문

다음은 구문입니다 -

  • 부울 값 반환 - true/false
inputWeekObject.readOnly
  • 읽기 전용 설정 booleanValue로
inputWeekObject.readOnly = booleanValue

부울 값

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

부울 값 세부정보
사실 입력 주 필드가 읽기 전용임을 정의합니다.
거짓 입력 주 필드가 읽기 전용이 아니며 수정할 수 있음을 정의합니다.

예시

Input Week readOnly 의 예를 살펴보겠습니다. 속성 -

<!DOCTYPE html>
<html>
<head>
<title>Input Week readOnly</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-readOnly</legend>
<label for="WeekSelect">Examination Week:
<input type="week" id="WeekSelect" value="2019-W36">
</label>
<input type="button" onclick="confirmWeek()" value="Confirm Week">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputWeek = document.getElementById("WeekSelect");
   divDisplay.textContent = 'Week Confirmed: '+inputWeek.readOnly;
   function confirmWeek() {
      inputWeek.readOnly = true;
      divDisplay.textContent = 'Week Confirmed: '+inputWeek.readOnly;
   }
</script>
</body>
</html>

출력

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

'주 확인'을 클릭하기 전에 버튼 -

HTML DOM 입력 주 readOnly 속성

'주 확인'을 클릭한 후 버튼 -

HTML DOM 입력 주 readOnly 속성