2024/02/19 웹접근성 1차 심사 후 수정

This commit is contained in:
ITN_디자인팀 2024-02-19 15:55:53 +09:00
parent 4f50ff548f
commit 0472520823

View File

@ -231,6 +231,8 @@ function _chkChasiTime(p_this){
//3.중복시간 체크
$( document ).ready(function(){
/* $('.chasu_calendar').pickadate({
format : "yyyy.mm.dd", //인풋에 표기되는 값
@ -1074,22 +1076,27 @@ function _chkChasiTime(p_this){
//240219 웹접근성 조치로 인한 disabeld가 아닌 다른 방법 사용
$("input[type='text']").prop('readonly', true);
$("button").attr("onclick", "return false;");
$("select").on("mousedown", function(e) {
e.preventDefault();
});
$("select").on("keydown", function(e) {
if (e.keyCode != 9) { // 탭키만 작동 가능
e.preventDefault();
}
});
$("input[type='radio']").on("click", function(e) {
e.preventDefault();
});
$("input[type='checkbox']").on("click", function(e) {
e.preventDefault();
});
$("button").removeAttr("data-tooltip");
$("button").attr("onclick", "return false;");
$("select").on("mousedown", function(e) {
e.preventDefault();
});
$("select").on("keydown", function(e) {
if (e.keyCode != 9) { // 탭키만 작동 가능
e.preventDefault();
}
});
$("input[type='radio']").each(function(idx,itm){
$(this).prop('checked', false);
});
$("input[type='radio']").prop("chekced", false);
$("input[type='checkbox']").on("click", function(e) {
e.preventDefault();
});
$("button").removeAttr("data-tooltip");
$("[readonly]").attr("title","비활성화됨");
$("[onclick='return false;']").attr("title","비활성화됨");
$("input,select").attr("title","비활성화됨");
$(".time_set_btn").remove();
}else{
$("input[name=rndsOrd]").val(returnData.rndsOrd);