1. ホーム
  2. html

[解決済み] 1つのフォームに複数のラジオボタングループがある

2022-03-01 15:04:34

質問

1つのフォームに複数のラジオボタングループを持たせることは可能でしょうか?通常、1つのボタンを選択すると前のボタンが非選択になりますが、1つのグループの1つを非選択にしたいのです。

<form>
    <fieldset id="group1">
        <input type="radio" value="">
        <input type="radio" value="">
    </fieldset>

    <fieldset id="group2">
        <input type="radio" value="">
        <input type="radio" value="">
        <input type="radio" value="">
    </fieldset>
</form>

解決方法は?

等しく設定する name 属性でグループを作成します。

<form>
  <fieldset id="group1">
    <input type="radio" value="value1" name="group1">
    <input type="radio" value="value2" name="group1">
  </fieldset>

  <fieldset id="group2">
    <input type="radio" value="value1" name="group2">
    <input type="radio" value="value2" name="group2">
    <input type="radio" value="value3" name="group2">
  </fieldset>
</form>