관리-도구
편집 파일: manager_calculator.js
$(function(){ $('#payd').on('input', function(){ if($("input[name=hour]").is(":checked")) { if($(this).val()){ $('#checkclient').prop( "disabled", false ); }else{ $('#checkclient').prop( "disabled", true); } } else { $('#checkclient').prop( "disabled", true ); } }); })