$('body').delegate('input:radio','click',function(){
var $radio = $(this);
if ($radio.data('waschecked') == true){
$radio.prop('checked', false);
$radio.data('waschecked', false);
} else {
$radio.prop('checked', true);
$radio.data('waschecked', true);
}
});
· 在使用radio的时候一定要记住,设置相同的name属性