반응형
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);
}
'프로그래밍 > 스크립트' 카테고리의 다른 글
자바스크립트 이벤트 종류 (0) | 2016.05.11 |
---|---|
키코드 모음 (0) | 2016.03.16 |
텍스트박스에 숫자만 입력하게 하는 jquery (0) | 2014.05.16 |
jquery UI 달력 DatePicker 커스트마이징 소스 (0) | 2014.05.16 |
jquery를 이용한 자동 table rowspanning (0) | 2014.05.07 |