点击按钮
更改单选按钮的值$(document).ready(function () {
$(document).on('click', '#btnAppID', function () {
$('input:radio[name="el18749690"]').each(function () {
$(this).attr('checked', false);
$(this).prop('checked', false);
});
$('input:radio[name="el18749690"]:first').attr('checked', true);
$('input:radio[name="el18749690"]:first').prop('checked', true);
});
});