for 속성이 있는 HTML 요소: 1. label 요소; for가 label 요소와 함께 사용되는 경우 for 속성은 레이블이 바인딩되는 양식 요소를 지정합니다. 2. 출력 요소, for가 출력 요소와 함께 사용되는 경우 for 속성은 계산 결과와 계산에 사용되는 요소 간의 관계를 지정합니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, HTML5 버전, Dell G3 컴퓨터.
for 속성이 적용되는 html 요소
요소 이름 | description |
---|---|
for 및<레이블> 함께 속성에 대해 레이블이 바인딩되는 양식 요소를 지정합니다. | |
<label for="element_id">
<form action="/jc_script/action.php"> <label for="php">PHP</label> <input type="radio" name="lang" id="php" value="php"><br> <label for="java">Java</label> <input type="radio" name="lang" id="java" value="java"><br> <label for="python">Python</label> <input type="radio" name="lang" id="python" value="python"><br><br> <input type="submit" value="提交"> </form>
for 속성은 계산 결과와 계산에 사용된 요소 간의 관계를 지정합니다.
Grammar
<output for="element_id">
<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">0 <input type="range" id="a" value="50">100 +<input type="number" id="b" value="50"> =<output name="x" for="a b"></output> </form>
html 비디오 튜토리얼
"위 내용은 for 속성이 있는 html 요소의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!