• 회원가입
  • 로그인
  • 구글아이디로 로그인

[attribute] HTML - disabled 속성 - 요소 비활성화 지정 (= disabled속성 = 디스에이블드속성|디세이블드속성) ※ 사용못하게 설정

목차
  1. disabled 예제 - <button> 경우
  2. disabled 정의
  3. disabled 구문
  4. disabled 예제 - <fieldset> 경우
  5. disabled 예제 - <input> 경우
  6. disabled 예제 - <optgroup> 경우
  7. disabled 예제 - <option> 경우
  8. disabled 예제 - <select> 경우
  9. disabled 예제 - <textarea> 경우

 

disabled 예제 - <button> 경우

 

<button type="button" disabled>클릭</button>

 

결과보기

 

disabled 정의

 

요소 비활성화 지정.

 


 

1. disabled 속성 사용 가능 태그 종류

<button>, <fieldset>, <input>, <optgroup>, <option>, <select>, <textarea>

 

2.

  • disabled 지정된 텍스트는 사용 못 함. (즉, 클릭/선택/복사: X)
  • 지정 조건 충족시까지 disalbed 속성 사용해 비활성화 시킨 후, 조건 충족 시 JS로 disabled 속성 제거해 활성화시킬 수도 있음.
  • disabled 지정된 요소의 폼데이터는 서버로 제출 X

 

3.

  • <button> - 모든 브라우저 지원.
  • <fieldset>- 모든 브라우저 지원. (IE11 이하 및 Safari 6 이하 X)
  • <input> - 모든 브라우저 지원.
  • <optgroup> - IE8 이상 모든 브라우저 지원.
  • <option> - IE8 이상 모든 브라우저 지원.
  • <select> - IE9 이상 모든 브라우저 지원.
  • <textarea> - 모든 브라우저 지원.

 

 

disabled 구문

 

  • <button disabled>
  • <fieldset disabled>
  • <input disabled>
  • <optgroup disabled>
  • <option disabled>
  • <select disabled>
  • <textarea disabled>

 


[속성값]

 

없음.

 

 

disabled 예제 - <fieldset> 경우

 

<form action="/action_page.php">

  <fieldset disabled>

    <legend>자기소개</legend>

    <label for="name">이름:</label>

    <input type="text" id="name" name="name"><br><br>

    <label for="nick">별명:</label>

    <input type="text" id="nick" name="nick"><br><br>

    <label for="email">이메일:</label>

    <input type="email" id="email" name="email"><br><br>

    <label for="birthday">생일:</label>

    <input type="date" id="birthday" name="birthday"><br><br>

    <input type="submit" value="확인">

  </fieldset>

</form>

 

결과보기

 

disabled 예제 - <input> 경우

 

<form action="/action_page.php">

  <label for="name">이름:</label>

  <input type="text" id="name" name="name"><br>

  <label for="nick">별명:</label>

  <input type="text" id="nick" name="nick" disabled><br>

  <input type="submit" value="확인">

</form>

 

결과보기

 

disabled 예제 - <optgroup> 경우

 

<form action="/action_page.php">

  <label for="langs">언어 선택</label>

  <select name="langs" id="langs">

    <optgroup label="브라우저측 언어">

      <option value="html">HTML</option>

      <option value="css">CSS</option>

  <option value="js">JavaScript</option>

    </optgroup>

    <optgroup label="서버측 언어" disabled>

      <option value="php">PHP</option>

      <option value="sql">SQL</option>

    </optgroup>

  </select><br>

  <input type="submit" value="확인">

</form>

 

결과보기

 

disabled 예제 - <option> 경우

 

<form action="/action_page.php">

  <label for="langs">언어선택:</label>

  <select name="langs" id="langs">

    <option value="html" disabled>HTML</option>

    <option value="css">CSS</option>

    <option value="js">JS</option>

  </select>

  <br><br>

  <input type="submit" value="확인">

</form>

 

결과보기

 

disabled 예제 - <select> 경우

 

<form action="/action_page.php">

  <label for="langs">언어선택:</label>

  <select name="langs" id="langs" disabled>

    <option value="html">HTML</option>

    <option value="css">CSS</option>

    <option value="js">JS</option>

  </select>

  <br><br>

  <input type="submit" value="확인">

</form>

 

결과보기

 

disabled 예제 - <textarea> 경우

 

<textarea disabled>홈짱닷컴 Homzzang.com</textarea>


결과보기


방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
attribute HTML - charset 속성 - 문자셋 지정 (= charset속성 = 차셋속성) ※ 문자인코딩, 언어셋
attribute HTML - checked 속성 ★ - 미리 (체크박스/라디오) 체크 여부 지정 (= checked속성 = …
attribute HTML - cite 속성 - (인용출처/삭제이유/삽입이유) 주소 연결 (= cite속성 = 사이트속성)
attribute HTML - class 속성 ★★★ - 클래스명 선택자 지정 (= class속성 = 클래스속성)
attribute HTML - color 속성 - (HTML5 지원 X) 글자색 지정 (= color속성 = 컬러속성)
attribute HTML - cols 속성 - <textarea> 세로열수(=세로줄수 = 가시너비) 지정 (= cols속성 …
attribute HTML - colspan 속성 ★ - 병합할 가로셀 개수 지정 (= colspan속성 = 콜스팬속성)
attribute HTML - content 속성 ★ - 메타데이터 값 지정 (= content속성 = 콘텐트속성|컨텐트속성)
attribute HTML - contenteditable 속성 - 요소 내용 수정 가능 여부 지정 (= contentedit…
attribute HTML - controls 속성 - (오디오/비디오) 플레이어의 제어창 표시 여부 (= controls속성…
attribute HTML - coords 속성 - 이미지맵 링크영역 좌표 표시 (= coords속성 = 코즈속성/코드스속성/…
attribute HTML - data 속성 - <object> 태그의 리소스 URL 주소 지정 (= data속성 = 데이터속…
attribute HTML - data-* 속성 ★★★ - 특정 (페이지/애플리케이션)의 사용자 데이터 저장 (= data-속…
attribute HTML - datetime 속성 - 날짜시간 지정 (= datetime속성 = 데이트타임속성)
attribute HTML - default 속성 - 기본 재생 트랙 지정 (= default속성 = 디폴트속성)
attribute HTML - defer 속성 ★★★ - 페이지 파싱 완료 후 외부스크립트 실행 (= defer속성 = 디퍼속…
attribute HTML - dir 속성 - 텍스트 출력방향 지정 (= dir속성 = 디르속성|디렉션속성)
attribute HTML - dirname 속성 - input/textarea 요소의 텍스트 방향 지정 (= dirname속…
attribute HTML - disabled 속성 - 요소 비활성화 지정 (= disabled속성 = 디스에이블드속성|디세이…
attribute HTML - download 속성 - 파일 다운로드 지정 (= download속성 = 다운로드속성) ※ 다운…
9/18
목록
찾아주셔서 감사합니다. Since 2012