Input,已经设置背景1,hover修改背景成背景2,onclick又要修改成背景3,已试过!important,还是有问题
1 回答
慕莱坞森
TA贡献1810条经验 获得超4个赞
.box{
width: 100px;
height: 100px;
background: red;
}
.box:hover{
background: blue;
}
<div class="box"></div>
document.getElementsByClassName('box')[0].onclick = function(){
this.style.backgroundColor = 'green';
}
添加回答
举报
0/150
提交
取消