エレメント - input radio-group
inputエレメントのtype radio-groupは、ラジオ・ボタンを論理的にグループ化する場合に使用されます。
構文:
エレメント |
属性 |
値 |
エレメント/属性/値に関するメモ |
input |
type |
radio-group |
|
name |
文字列 |
|
|
length |
整数 |
省略値は0。値が0の場合、入力制限はありません。 |
|
readonly |
ブール値 |
省略値はfalse |
例
<input type="radio-group" name="RADIO1" length="10">
<input type="radio" value="RAD1" x1="120" y1="540"/>
<input type="radio" value="RAD2" x1="140" y1="540" selected="true"/>
<input type="radio" value="RAD3" x1="160" y1="540"/>
</input>