当你将鼠标悬停在select
div变为绿色并点击绿色div中的某处时,应点击/选择radio button
,该怎么做?
.select {
color: black;
background-color: blue
}
.select:hover {
background-color: green;
}
<div class="select"><input type="radio" class='click' value="1,000,000" /> 1,000,000</div>
答案 0 :(得分:1)
使用label而不是div
<label class="select"><input type="radio" class='click' value="1,000,000" /> 1,000,000</label>