1
我已經在這裏工作的例子:http://jsfiddle.net/infatti/esLMh/切換收音機顯示/隱藏只有最接近
爲什麼「不」不觸發隱藏?
$('.hide-show input').change(function() {
$(this).closest('.hide-show').next('.hide-show-yes').toggle(this.value == 'yes');
$(this).closest('.hide-show').next('.hide-show-no').toggle(this.value == 'no');
});
$('.hide-show input:checked').change(); //trigger correct state onload