From 21f4bccebc6e0af6b5cc9cc1030d7ff482d155b9 Mon Sep 17 00:00:00 2001 From: kmg Date: Wed, 24 Jan 2024 18:15:39 +0900 Subject: [PATCH] =?UTF-8?q?2024/01/24=20=ED=85=8C=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EB=B0=8F=20=EC=95=8C=EB=9E=8C=20a=20=ED=83=9C=EA=B7=B8?= =?UTF-8?q?=EC=97=90=20=EB=82=B4=EC=9A=A9=EC=97=86=EC=9D=84=EB=95=8C=20?= =?UTF-8?q?=ED=83=AD=ED=8F=AC=EC=BB=A4=EC=8A=A4=20=EC=A0=9C=EC=99=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../aplct/tngrVisitEdu/eduEnd/eduEndList.jsp | 4 +--- .../visitEdu/usr/publish/script/content.js | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp index ea40414f..3c2a2434 100644 --- a/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/ve/aplct/tngrVisitEdu/eduEnd/eduEndList.jsp @@ -162,9 +162,7 @@ - ', '');"> - - + ', '');"> ', '');"> diff --git a/src/main/webapp/visitEdu/usr/publish/script/content.js b/src/main/webapp/visitEdu/usr/publish/script/content.js index 45a42fde..9054d398 100644 --- a/src/main/webapp/visitEdu/usr/publish/script/content.js +++ b/src/main/webapp/visitEdu/usr/publish/script/content.js @@ -1291,4 +1291,22 @@ function popCaptionToggle02() { }) } +$(document).ready(function () { + // 테이블 a 내용 없으면 포커싱 안가게. + $(".tb_list01 a").each(function(index,itm){ + if($(itm).text()==""){ + $(itm).attr("tabindex","-1"); + }else{} + }); + + // 알람 a 내용 없으면 포커싱 안가게. + $(".login_info a").each(function(index,itm){ + if($(itm).text()==""){ + $(itm).attr("tabindex","-1"); + }else{} + }) + +}); + +