From 0472520823cb9f1d04265827778ef3be5feeb73d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ITN=5F=EB=94=94=EC=9E=90=EC=9D=B8=ED=8C=80?= Date: Mon, 19 Feb 2024 15:55:53 +0900 Subject: [PATCH] =?UTF-8?q?2024/02/19=20=EC=9B=B9=EC=A0=91=EA=B7=BC?= =?UTF-8?q?=EC=84=B1=201=EC=B0=A8=20=EC=8B=AC=EC=82=AC=20=ED=9B=84=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tngrVisitEdu/eduAplct/eduAplctReg.jsp | 39 +++++++++++-------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduAplct/eduAplctReg.jsp b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduAplct/eduAplctReg.jsp index 93f527b2..23068c5b 100644 --- a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduAplct/eduAplctReg.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduAplct/eduAplctReg.jsp @@ -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);