This commit is contained in:
myname 2024-01-24 18:29:30 +09:00
commit 4857be2e03
4 changed files with 23 additions and 7 deletions

View File

@ -109,7 +109,7 @@
<div class="btn_wrap btn_layout01">
<div class="btn_center" style="width: 100%;">
<button type="button" class="btnType04" onclick="openPop();" title="팝업 열림">신청서 작성</button>
<button type="button" class="btnType04" data-tooltip="sub40_pop01" onclick="openPop();" title="팝업 열림">신청서 작성</button>
<button type="button" class="btnType06" onclick="javascript:fn_egov_downFile('<c:out value="${detailVO.atchFileId}"/>','0')" title="파일 다운로드">안내문 다운로드</button>
<button type="button" class="btnType06" onclick="javascript:fn_egov_downFile('<c:out value="${detailVO.atchFileId}"/>','1')" title="파일 다운로드">운영신청서 다운로드</button>
<button type="button" class="btnType06" onclick="fncGoList();" >신청내용 조회</button>

View File

@ -45,9 +45,9 @@
<form id="prcsOrdForm" name="prcsOrdForm">
<input type="hidden" name="prcsOrd" id="prcsOrd" value="${detailVO.prcsAplctPrdOrd}" /> <!-- 교육과정신청기간 ID -->
</form>
<div class="popup_wrap popType05" tabindex="0" data-tooltip-con="sub40_pop01" data-focus="sub40_pop01" data-focus-prev="list_popup_close">
<div class="popup_wrap popType05" tabindex="0" data-tooltip-con="sub40_pop01" data-focus="sub40_pop01" data-focus-prev="sub40_pop01_close">
<div class="popup_tit">
<p>신청서 작성 안내</p> <button class="btn_popup_close tooltip-close" data-focus="list_popup_close" title="팝업 닫기"><i></i></button>
<p>신청서 작성 안내</p> <button class="btn_popup_close tooltip-close" data-focus="sub40_pop01_close" title="팝업 닫기"><i></i></button>
</div>
<div class="popup_cont">
<div class="cont_body">
@ -89,7 +89,7 @@
<c:if test="${detailVO.checkYn ne 'Y' }">
<button type="button" class="btnType05" onclick="goMain();">찾아가는 저작권 교육</button>
</c:if>
<button type="button" class="btnType02 tooltip-close" data-focus="list_popup_close" data-focus-next="sub40_pop01">취소</button>
<button type="button" class="btnType02 tooltip-close" data-focus="sub40_pop01_close" data-focus-next="sub40_pop01">취소</button>
</div>
<div class="btn_right">
</div>

View File

@ -162,9 +162,7 @@
</a>
</td>
<td>
<a href="javascript:goDetail('<c:out value="${list.eduAplctOrd}"/>', '<c:out value="${list.eduChasiOrd}"/>');">
<c:out value='${list.eduPlace}'/>
</a>
<a href="javascript:goDetail('<c:out value="${list.eduAplctOrd}"/>', '<c:out value="${list.eduChasiOrd}"/>');"><c:out value='${list.eduPlace}'/></a>
</td>
<td>
<a href="javascript:goDetail('<c:out value="${list.eduAplctOrd}"/>', '<c:out value="${list.eduChasiOrd}"/>');">

View File

@ -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{}
})
});