0

我有一组带有相关标签的无线电输入。有一些 CSS 魔法可以美化按钮,这很好用。我需要能够更改标签的选定属性。

<input type='radio' id='radio1' name='resolution' value='0' selected />
<input type='radio' id='radio2' name='resolution' value='1' />
<label for='radio1' class='cb-enable selected' ><span>Open</span></label>
<label for='radio2' class='cb-disable ' ><span>Closed</span></label>

我将如何使用 jQuery 设置标签选择器?

4

1 回答 1

1
$("input:radio[name='resolution']").change(function(){
    $("label").removeClass("selected");
    $("label[for='" + this.id + "']").toggleClass("selected", this.checked);
});

http://jsfiddle.net/QKL5t/

于 2013-08-09T19:06:49.670 回答