我有一组带有相关标签的无线电输入。有一些 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 设置标签选择器?