我有一堆div:
<div class='option'>
<span>here is a label for one pair of radio buttons</span>
<a href='#' rel='radio' class='on'>On</a>
<a href='#' rel='radio' class='off'>Off</a>
</div>
我正在尝试使用 jQuery 在这两个类('off' 和 'on')之间切换。
<script>;
$(document).ready(function(){
$("a[rel='radio']").click(function(){
if($(this).attr('class')=='on'){
//make $(this) have class 'off'
//make the other a in *this* div have class 'on'
} else {
//make $(this) have class 'on'
//make the other a in the div have class 'off'
}
});
});
</script>
如何将注释的伪代码转换为真实的 jQuery?