多个单选按钮被选中

时间:2013-07-27 17:07:36

标签: java swing radio-button jradiobutton

我有两个用java制作的单选按钮。问题是它们没有连接在一起,即它们都可以同时被选中。我如何实现它们之间的联系?

1 个答案:

答案 0 :(得分:-2)

设置相同的name属性 Radio example

<input id="hello" type="radio" name="greet">
<label for="hello">hello</label>
<input id="hi" type="radio" name="greet">
<label for="hi">hi</label>
<hr />
<input id="all" type="radio" name="who">
<label for="all">world!</label>
<input id="one" type="radio" name="who">
<label for="one">you</label>