- jQuery获取 checkbox 表单域选中的值
$("#field_systemBackup").is(":checked"); //选中返回true, 未选中返回false
- jQuery获取 radio 表单域选中的值
$("input[name='nextHandle']:checked").val();
$("#field_systemBackup").is(":checked"); //选中返回true, 未选中返回false
$("input[name='nextHandle']:checked").val();