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.
大概的意思是:最好的做法,是给label标签,添加for属性,其值与input标签的id
label 要素に値を指定して for 属性を設定することがベスト プラクティスと考えられますこれは、input 要素の id 属性の値と一致します。これにより、支援技術がラベルと子 input 要素の間にリンクされた関係を作成できるようになります。おそらく、ベスト プラクティスは、 label を指定することです。タグに for 属性を追加します。その値は、input タグの id 属性の値と同じです。そのため、label とinput それらの間の関連付けを作成します。