我有兩個用java製作的單選按鈕。問題是他們沒有聯繫在一起,即他們都可以同時被選中。我如何實現他們之間的聯繫?多個單選按鈕被選中
回答
我認爲你需要這一點;
//Create three radio buttons
JRadioButton aButton = new JRadioButton("A",true);
JRadioButton bButton = new JRadioButton("B");
JRadioButton cButton = new JRadioButton("C");
//Create a ButtonGroup object, add buttons to the group
ButtonGroup myButtonGroup = new ButtonGroup();
myButtonGroup.add(aButton);
myButtonGroup.add(bButton);
myButtonGroup.add(cButton);
//Display radio buttons
getContentPane().setLayout(new FlowLayout());
getContentPane().add(aButton);
getContentPane().add(bButton);
getContentPane().add(cButton);
setSize(250,100);
setTitle("Swing Radio Buttons");
setVisible(true);
讓我知道,如果幫助。
它解決了問題 –
當然,很高興它幫助。我很感激,如果你能接受答案,如果它幫助你。 TX – JNL
設置相同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>
我在java中說過,你提的是html –
猜你在說java swing! –
在這種情況下,您正在尋找這個http://docs.oracle.com/javase/7/docs/api/javax/swing/ButtonGroup.html – ep0
- 1. 哪個單選按鈕被選中?
- 2. 單選按鈕被禁用後,下一個單選按鈕被選中
- 3. 多個單選按鈕,一個選中
- 4. 檢查是否有多個單選按鈕被選中
- 5. 停止多個單選按鈕被選中
- 6. JS如果單選按鈕被選中
- 7. jQuery - 單選按鈕被選中
- 8. jQuery單選按鈕「被選中」代碼
- 9. MVC單選按鈕被選中1
- 10. 單選按鈕被選中java
- 11. 如何讓單選按鈕被選中?
- 12. 按鈕單擊時設置單選按鈕被選中爲真
- 13. jQuery多個單選按鈕
- 14. 多個單選按鈕
- 15. jquery多個單選按鈕
- 16. PHP多個單選按鈕
- 17. 與多個單選按鈕
- 18. 選擇多個單選按鈕
- 19. 引導多個單選按鈕選擇
- 20. 單選按鈕正在選擇多個
- 21. 無法選擇多個單選按鈕
- 22. 當一個單選按鈕被選中時,另一個單選按鈕應該被自動檢查
- 23. 當選擇每個按鈕時,JQuery更改單選按鈕被選中狀態
- 24. 選項按鈕被選中
- 25. 當單選按鈕被選中時如何選擇一個div
- 26. 單選按鈕中的單選按鈕
- 27. 使用jQuery選擇多個單選按鈕組的第一個單選按鈕
- 28. 顯示編輯按鈕時,單選按鈕被選中
- 29. 如何檢查是否在單選按鈕列表單選按鈕被選中
- 30. 單選按鈕僅選擇第一個單選按鈕沒有其它無線電按鈕被選擇
你需要閱讀有關單選按鈕組。順便說一下你在用什麼方法? –
嘿,想知道下面的答案是否對你有幫助? – JNL