2011-07-29 17 views
1

ラジオ要素が選択解除されたときを追跡する方法はありますか?結果予想トラッキングラジオの選択解除

<script type="text/javascript"> 
$().ready(function() { 
    $('#answer-1').change(function(){ 
     console.log('radio-1 changed'); 
    }); 

    $('#answer-2').change(function(){ 
     console.log('radio-2 changed'); 
    }); 

}); 
</script> 

<input name="question-1" type="radio" id="answer-1" />Value 
<input name="question-1" type="radio" id="answer-2" />Value 

JSFiddle link

:答え-2に切り替えたときに答え-1を選択する場合、それはイベント 'ラジオ-1が変更' を示し、そして、それショーラジオ-2に変更とラジオはすべき-1

実際の結果変更:答え-2に切り替えたときに答え-1を選択する場合、それはイベント「ラジオ-1が変更」を示しているが、それから、それだけで「ラジオ-2が変更さ」を示す

ありますときにイベントを取得する方法ラジオはDEを選んだ?

答えて

0

あなたがここに.data

を使用することができ、この

<script type="text/javascript"> 
$().ready(function() { 
    $('input[name=question-1]').change(function(){ 
     if(this.checked) 
      console.log('radio is selected'); 
     else 
      console.log('radio is note selected'); 
    }); 
}); 
</script>