2011-07-29 117 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

預期結果:當選擇答案-1,它示出了事件 '單選-1變更',開關回答-2則時,應該顯示無線電-2變更與無線電-1改變

實際結果:當選擇答案-1,它顯示了事件「單選-1變更」,開關回答-2那麼當,它僅示出了「無線電-2變更」

是否有一個當事件發生的方式無線電的獲得DE選擇?

回答

0

試試這個

<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> 
相關問題