我有一个小问题。我想检查一个复选框是否被选中,如果它被选中,我想给他的第一个兄弟添加一个类。HTML:
<input class="box" type="checkbox">
<p class="red">Red text </p>
<input class="box" checked type="checkbox">
<p class="red">I want this text in blue </p>
JS:
if(jQuery(".box").is(":checked")) {
jQuery(this).next().attr('class', 'blue');
}
这里的例子:http: //jsfiddle.net/LVEqn/
提前致谢 !