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

[attribute] HTML - for 속성 - <label>/<output> 관련 요소 ID 바인딩 지정 (= for속성 = 포속성) ※ 인풋태그에 라벨/레이블 달기 + 아웃풋 태그에 계산결과 넣기

목차
  1. for 예제 - <label> 경우
  2. for 정의
  3. for 구문
  4. for 예제 - <output> 경우

 

for 예제 - <label> 경우

[방법1] - <label> 태그로 <input> 태그를 감싸는 경우

 

<form action="/action_page.php">

  <label for="html"> <input type="radio" id="html" name="lang" value="HTML"> HTML</label>

  <label for="css"><input type="radio" id="css" name="lang" value="CSS"> CSS</label>

  <label for="javascript"><input type="radio" id="javascript" name="lang" value="JavaScript"> JavaScript</label>

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

</form>

 

결과보기


[방법2] - <label> 태그를 <input> 태그를 분리한 경우

 

<form action="/action_page.php">

  <input type="radio" id="html" name="lang" value="HTML">

  <label for="html">HTML</label>

  <input type="radio" id="css" name="lang" value="CSS">

  <label for="css">CSS</label>

  <input type="radio" id="javascript" name="lang" value="JavaScript">

  <label for="javascript">JavaScript</label>

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

</form>

 

결과보기 

 

for 정의

 

  • <label> 경우, 라벨 요소가 바인딩 될 요소 지정.
  • <output> 경우, 계산 결과에 사용된 요소 지정.

 


 

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

<label>, <output>

 

2.

주요 최신  브라우저 모두 지원.

 

 

for 구문

 

  • <label for="element_id">
  • <output for="element_id">

 


[속성값]

 

element_id

  • <lable> 경우, <label> 요소가 바인딩된 요소의 ID 지정.
  • <output> 경우, 계산 결과와 계산에 사용된 요소 사이의 관계를 지정하는 하나 이상의 요소의 ID 목록을 공백으로 구분하여 지정.

 

 

for 예제 - <output> 경우

 

<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">

    <input type="range" id="a" value="50"> 

    + <input type="number" id="b" value="100"> 

    = <output name="x" for="a b"></output>

</form>

 

결과보기



분류 제목
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