“name”属性について 指定できる値 サンプルコード # “name”属性について “name”属性は“fieldset”要素の名前を指定する属性です。 “name”属性”で指定した名前はスクリプトからの参照のために使用されます。 # 指定できる値 属性値 説明 文字列 グループの名前 # サンプルコード <form method="post" action="sample-formtag2.php"> <fieldset name="form1_fruit"> <legend>好きな果物</legend> <p> <label><input type="checkbox" name="fruit[]" value="甘蕉">甘蕉</label> <label><input type="checkbox" name="fruit[]" value="林檎">林檎</label> <label><input type="checkbox" name="fruit[]" value="甜瓜">甜瓜</label> <label><input type="checkbox" name="fruit[]" value="苺">苺</label> <label><input type="checkbox" name="fruit[]" value="桃">桃</label> </p> </fieldset> <fieldset name="form1_no1fruit"> <legend>一番好きな果物</legend> <p> <label><input type="radio" name="no1fruit" value="甘蕉">甘蕉</label> <label><input type="radio" name="no1fruit" value="林檎">林檎</label> <label><input type="radio" name="no1fruit" value="甜瓜">甜瓜</label> <label><input type="radio" name="no1fruit" value="苺">苺</label> <label><input type="radio" name="no1fruit" value="桃">桃</label> </p> </fieldset> <p><input type="submit" value="送信する"></p> </form>