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