https://drupal.stackexchange.com/questions/27965/ajax-callback-change-checked-radio-button
For Drupal 8+:
$inputs = $form_state->getUserInput(); unset($inputs[$item]); $form_state->setUserInput($inputs);
For Drupal 7:
unset($form['input'][$item]);
评论