프로그래밍/스크립트

jquery 폼들을 일괄적으로 활성화 / 비활성화

Doonee 2014. 5. 19. 16:23
반응형

function SetInputYN(Y) {

    if (Y) {

        $(':input:text').each(function (index) { $(this).prop('disabled', true) });

        $(':input:radio').each(function (index) { $(this).prop('disabled', true) });

        $(':input:checkbox').each(function (index) { $(this).prop('disabled', true) });

        $('textarea').each(function (index) { $(this).prop('disabled', true) });

        $('#ibFinish').prop('disabled', true);

    } else {

        $(':input').each(function (index) { $(this).prop('disabled', false) });

        GetProcessDoneYN();

    }

}


    SetInputYN(true);

    var user = $('#hdUserid').val();

    var testeduser = $('#hdTestedUserid').val();

    if (user.toUpperCase() == testeduser.toUpperCase()) {

        SetInputYN(false);

    }