有没有办法跟踪取消选择无线电元素的时间?
<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
预期结果:当选择answer-1时,它显示事件'radio-1 changed',然后当切换到answer-2时,应该显示radio-2已更改且radio-1已更改< / p>
实际结果:选择answer-1时,会显示'radio-1 changed'事件,然后切换到answer-2时,只显示'radio-2 changed'
当无线电被取消选择时,有没有办法获取事件?
答案 0 :(得分:1)
您可以使用.data
答案 1 :(得分: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>