私はたくさんの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を使用してこれら2つのクラス(「オフ」と「オン」)を切り替えようとしています。
<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に変換するにはどうすればよいですか?