如何為不同的按鈕組選擇和更改顏色按鈕
阿新 • • 發佈:2022-03-04
我正在建立兩個按鈕組。每當我點選第二個按鈕組中的一個按鈕時,第一個按鈕組中已經選中的按鈕就會被取消選中。我只能在兩個組中選擇一個按鈕。我想從每組中選擇一個按鈕。這是我使用的程式碼:focus(css)作為按鈕。我需要使用bootsrap(btn主)的按鈕型別。這是我的HTML程式碼和CSS,請幫助我。
<div class="row">
<div class="column" style="width:30%">
<div class="btn-group" >
<button type="button" class="btn btn-primary" style="out line-color:red; " @onclick="() => UpdateTheChart(11)">@Language.T35</button>
<button type="button" class="btn btn-primary" @onclick="() => UpdateTheChart(12)">@Language.T36</button>
<button type="button" class="btn btn-primary" btn btn-primary" @onclick="() => UpdateTheChart( 13)">@Language.T37</button>
</div>
</div>
<div class="column" style="width:70%">
<div class="btn-group" >
<button type="button" class="btn btn-primary" @onclick="() => UpdateTheChart(21)">@Language.T138</button>
<button type="button" class="btn btn-primary"@onclick="() => UpdateTheChart(22)">@Language.T38</button>
<button type="button" class="btn btn-primary" @onclick="() => UpdateTheChart(2 3)">@Language.T39</button>
<button type="button" class="btn btn-primary" @onclick="() => UpdateTheChart(24)">@Language.T40</button>
</div>
</div>
</div>
CSS
.show {
display : block;
}
.btn-group {
margin-top : 20px;
overflow : hidden;
}
.btn {
font-weight : bold;
color : white;
border : none;
outline : none;
padding : 12px 16px;
/*blue*/
background-color : #2c75ff;
cursor : pointer;
}
.btn:hover {
font-weight : bold;
color : white;
/*green*/
background-color : #85c995;
}
.btn:focus {
/*green*/
background-color : #85c995;
color : white;
}
我試過標籤radio&Javascript不起作用。