このウェブサイトはご利用の端末での閲覧に対応していません。
This website does not support your device.

fieldset”要素~“form”属性HTML5で追加

記事May 1st,2015
July 7th,2020
グループをフォームに関連付ける属性
この記事はHTML Living Standardに対応しています。
この記事はHTML Living Standardに対応しています。

form”属性について

form”属性はform”要素の外にあるfieldset”要素form”要素と関連付ける属性です。

form”属性の値にはfieldset”要素を関連付けるform”要素id”属性の値を指定します。同じ文書にあるform”要素であれば配置場所にかかわらず関連付けることができます。

form”属性でform”要素に関連付けられるのはfieldset”要素のみです。fieldset”要素の中にある入力欄やボタンなどをform”要素に関連付けるにはそれぞれに“form”属性を指定する必要があります。

form”属性を省略した場合はfieldset”要素は祖先要素となるform”要素に関連づけられます。

指定できる値

属性値 説明
ID名 関連づけるform”要素id”属性の値

サンプルコード

<fieldset form="sample-form">
<legend>猫は好きですか?</legend>
<p><label><input type="checkbox" name="cat" value="Yes" required form="sample-form">好き</label></p>
</fieldset>

...

<form method="post" action="sample-inputtag7.php" id="sample-form" target="_blank">
<fieldset>
<legend>好きな果物</legend>
<p>
<label><input type="radio" name="fruit" value="甘蕉">甘蕉</label>
<label><input type="radio" name="fruit" value="林檎">林檎</label>
<label><input type="radio" name="fruit" value="甜瓜">甜瓜</label>
<label><input type="radio" name="fruit" value="苺">苺</label>
<label><input type="radio" name="fruit" value="桃">桃</label>
</p>
</fieldset>
<fieldset>
<legend>好きな果物</legend>
<p>
<label><input type="radio" name="vege" value="南瓜">南瓜</label>
<label><input type="radio" name="vege" value="甘藍">甘藍</label>
<label><input type="radio" name="vege" value="甘藷">甘藷</label>
<label><input type="radio" name="vege" value="西瓜">西瓜</label>
<label><input type="radio" name="vege" value="茄子">茄子</label>
</p>
</fieldset>
<p><input type="submit" value="送信する"></p>
</form>
猫は好きですか?


...

好きな果物

好きな果物

*送信すると入力内容が表示されます。
一番上へ
トップにもどる
シェアする
シェアする
Facebookでシェアする
ツイート
Google+でシェア
Pocket
はてなブックマーク