单选按钮 - 造型背景onclick

时间:2015-01-14 21:53:33

标签: javascript jquery html css

我一直试图让这个工作一段时间,而且我没有发生这种情况。 我想要点击一个单选按钮的背景标签。

几乎将标签的背景更改为完全不透明度(白色),边框为左:13px solid#000;

有没有人对如何做到这一点有任何想法? http://www.testmethanks.com/test/index.html

1 个答案:

答案 0 :(得分:1)

你走了: http://jsfiddle.net/peSJG/42/

.radiostyle {
    background-color: #999;
}
input[type=radio]:checked+label {
    background-color: white;
    border-left: 13px solid #000;
}


<input type="radio" name="1" value="100" id="a1">
<label for="a1" class="radiostyle">Click to make label BG whie, and add a 13px left side border</label>

没有JS,所有CSS。