有for屬性的html元素:1、label元素;for與label元素一起使用時,for屬性指定標籤綁定到哪個表單元素。 2、output元素;for與output元素一起使用時,for屬性指定計算結果與計算中使用的元素之間的關係。
本教學操作環境:windows7系統、HTML5版、Dell G3電腦。
for屬性適用的html元素
元素名稱 | 說明 |
---|---|
2e1cf0710519d5598b1f0f14c36ba674 | for與2e1cf0710519d5598b1f0f14c36ba674元素一起使用時,for屬性指定標籤綁定到哪個表單元素。 |
be6d67dae90cc1ad6469079e163d0939 | for與be6d67dae90cc1ad6469079e163d0939元素一起使用時,for屬性指定計算結果與計算中使用的元素之間的關係。 |
2e1cf0710519d5598b1f0f14c36ba674標籤for屬性
for屬性指定標籤綁定到哪個表單元素。
語法
<label for="element_id">
element_id:label 要綁定的元素的 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>
be6d67dae90cc1ad6469079e163d0939標籤for屬性
##for屬性指定計算結果與計算中使用的元素之間的關係。語法
<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影片教學》
以上是哪些html元素有for屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!