這篇文章給大家介紹的內容是關於html中
在freecodecamp上HTML教程的Create a Set of Radio Buttons
這一節中,看到這樣一段話,
It is considered best practice to set a for attribute on the label element, with a value that matches the value of the id attribute of the input element. This allows assistive technologies to create a linked relationship between the label and the child input element.##ween the label and the child input element.##ween the label and the child input element.## :最好的做法,是給
label標籤,加上for
屬性,其值與input
標籤的id
屬性的值相同,以在label和input之間建立關聯。 同時,給出一段範例程式碼,如下:
<!-- Code 1 --> <label> <input>Indoor </label>
#程式碼中,label的for屬性值與input的id屬性值相同。從這段程式碼中,並不能看出關聯在何處。
關於label的for屬性的定義如下:
The for attribute specifies which form element a label is bound to.譯文:for屬性指定label與表單中的哪個元素進行綁定。
範例程式碼:<!-- Code 2 -->
比較兩段程式碼,不難發現,
##label與input標籤的包含關係不同。 Code 1 的label和input,屬於包含關係,Code 2 的label和input相對獨立。html中標籤嵌套的問題如何解決
以上是關於html中