ホームページ > 記事 > ウェブフロントエンド > HTMLの
この記事では、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.
大概的意思是:最好的做法,是给label
标签,添加for
属性,其值与input
标签的id
label
を指定することです。タグに for
属性を追加します。その値は、input
タグの id
属性の値と同じです。そのため、label とinput それらの間の関連付けを作成します。 同時に、以下のようなサンプルコードを示します。 <!-- Code 1 -->
<label>
<input>Indoor
</label>
ラベルの for 属性の定義は次のとおりです:
for 属性は、ラベルがバインドされるフォーム要素を指定します。 翻訳: for 属性は、ラベルがフォーム内のどの要素にバインドされるかを指定します。 サンプルコード: <!-- Code 2 -->
以上がHTMLの