我在一个HTML页面上有2个按钮组。每组3到4个按钮(使用引导程序的按钮)。我想使用Javascript在没有onclick的情况下更改点击时的颜色按钮。
null
.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;
}
<div class="row">
<div class="column" style="width:30%">
<div class="btn-group" >
<button type="button" class="btn btn-primary" style="outline-color:red; ">Sunday</button>
<button type="button" class="btn btn-primary" >Tuesday</button>
<button type="button" class="btn btn-primary" >Friday</button>
</div>
</div>
<div class="column" style="width:70%">
<div class="btn-group" >
<button type="button" class="btn btn-primary" >9 am</button>
<button type="button" class="btn btn-primary">2 pm</button>
<button type="button" class="btn btn-primary">5 pm</button>
<button type="button" class="btn btn-primary" >8 pm</button>
</div>
</div>
</div>
null
我正在开发一个基于测验的应用程序。将有1个问题和4个选项(单选按钮)。如果用户选择了任何错误的答案,那么我想将单选按钮颜色变为红色。如何做到这一点?
问题内容: 我有一个Java按钮,可打开JColorChooser对话框。我希望按钮的颜色根据对话框中选择的颜色进行更改。我曾尝试调用按钮的setBackgroundColor()方法,但对我而言没有任何效果(该按钮位于Winsows 7中的JToolBar上)。同样,此问题表明更改按钮的背景不是平台无关的。 也许此问题的答案不是首先使用按钮。因此,我的问题是:是否存在一种方法来显示Java中反映
问题内容: 我的意思是,单选按钮本身由一个圆形和一个位于中心的点组成(选择该按钮时)。我要更改的是两者的颜色。可以使用CSS完成吗? 问题答案: 一种快速的解决方法是使用来覆盖单选按钮的输入样式,但是创建自己的自定义工具箱可能是更好的做法。
我想在我的一个项目中更改RadioButton圆圈的颜色,但我不知道要设置哪个属性。背景色为黑色,因此不可见。我想把圆圈的颜色设置为白色。
我想知道如何在android中更改单选按钮的圆圈和边框的颜色。请帮我试了两天。
在我的应用程序中,我使用动作栏和导航抽屉。操作栏中有一个按钮用于打开和关闭导航抽屉。我想把它的颜色改成红色。我该怎么做?