2024/03/22 [웹접근성 수정] table caption, title 수정

This commit is contained in:
subsub 2024-03-22 15:19:44 +09:00
parent 42fdf7c571
commit 4dfa59a87d
10 changed files with 34 additions and 18 deletions

View File

@ -211,7 +211,7 @@
<div class="btn_wrap btn_layout03"> <div class="btn_wrap btn_layout03">
<div class="btn_left"></div> <div class="btn_left"></div>
<div class="btn_right"> <div class="btn_right">
<button type="button" class="btnType08" onclick="fncDetailPop(); return false;">상세정보</button> <button type="button" class="btnType08" onclick="fncDetailPop(); return false;" title="새창 팝업 열림">상세정보</button>
</div> </div>
</div> </div>

View File

@ -125,7 +125,7 @@
<div class="inner"> <div class="inner">
<div class="cont_tit"> <div class="cont_tit">
<h2>나의 조정사건 목록</h2> <h2>나의 조정사건 목록</h2>
<button type="button" class="btnType03" onclick="tutorialPop();">전체과정 미리보기(튜토리얼)</button> <button type="button" class="btnType03" onclick="tutorialPop();" title="새창열림">전체과정 미리보기(튜토리얼)</button>
</div> </div>
<!-- list_top --> <!-- list_top -->

View File

@ -132,7 +132,7 @@
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<th> <th scope="row">
<p>발급구분</p> <p>발급구분</p>
</th> </th>
<td> <td>
@ -140,7 +140,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th> <th scope="row">
<p>조정번호</p> <p>조정번호</p>
</th> </th>
<td> <td>
@ -148,7 +148,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th> <th scope="row">
<p>신청인 구분</p> <p>신청인 구분</p>
</th> </th>
<td> <td>
@ -156,7 +156,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th> <th scope="row">
<p>연락처</p> <p>연락처</p>
</th> </th>
<td> <td>
@ -166,7 +166,7 @@
<c:choose> <c:choose>
<c:when test="${info.recordReadingFlag == 10}"> <c:when test="${info.recordReadingFlag == 10}">
<tr class="tr_post"> <tr class="tr_post">
<th> <th scope="row">
<p>수령주소</p> <p>수령주소</p>
</th> </th>
<td> <td>
@ -178,7 +178,7 @@
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<tr> <tr>
<th> <th scope="row">
<p>예약일시</p> <p>예약일시</p>
</th> </th>
<td> <td>
@ -193,7 +193,7 @@
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>
<tr> <tr>
<th> <th scope="row">
<p>서류종류</p> <p>서류종류</p>
</th> </th>
<td> <td>
@ -201,7 +201,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th> <th scope="row">
<p>발급부수</p> <p>발급부수</p>
</th> </th>
<td> <td>
@ -209,7 +209,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th> <th scope="row">
<p>요청내용</p> <p>요청내용</p>
</th> </th>
<td> <td>
@ -217,7 +217,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th><p>발급상태</p></th> <th scope="row"><p>발급상태</p></th>
<td> <td>
<p><kc:code codeId="CC304" code="${info.prcsnStatCd}"/></p> <p><kc:code codeId="CC304" code="${info.prcsnStatCd}"/></p>
<c:choose> <c:choose>

View File

@ -44,6 +44,10 @@
// 방문 20 // 방문 20
classify(); classify();
}); });
setTimeout(function(){
boardCaptionToggle02();
},100)
}); });
@ -60,6 +64,9 @@
$(".tr_visit").show(); $(".tr_visit").show();
$(".tr_post").hide(); $(".tr_post").hide();
} }
setTimeout(function(){
boardCaptionToggle02();
},100)
} }
function valueChk(){ function valueChk(){

View File

@ -79,7 +79,7 @@ function tutorialPop(){
<div class="inner"> <div class="inner">
<div class="cont_tit"> <div class="cont_tit">
<h2>조정신청</h2> <h2>조정신청</h2>
<button type="button" class="btnType03" onclick="tutorialPop();">전체과정 미리보기(튜토리얼)</button> <button type="button" class="btnType03" onclick="tutorialPop();" title="새창 열림">전체과정 미리보기(튜토리얼)</button>
</div> </div>

View File

@ -195,7 +195,7 @@
<div class="btn_wrap btn_layout03"> <div class="btn_wrap btn_layout03">
<div class="btn_left"></div> <div class="btn_left"></div>
<div class="btn_right"> <div class="btn_right">
<button type="button" class="btnType08" onclick="fncDetailPop(); return false;">상세정보</button> <button type="button" class="btnType08" onclick="fncDetailPop(); return false;" title="새창팝업열림">상세정보</button>
</div> </div>
</div> </div>

View File

@ -137,7 +137,8 @@
<p>발급부수</p> <p>발급부수</p>
</th> </th>
<td> <td>
<input type="number" name="authQntty" id="authQntty" min="1" value="1"> <label for="authQntty" class="label">발급부수 입력</label>
<input type="number" name="authQntty" id="authQntty" min="1" value="1" >
<span>통</span> <span>통</span>
</td> </td>
</tr> </tr>

View File

@ -433,7 +433,8 @@ table .label{position: absolute;width: 1px; height: 1px; margin: 0; border: none
.sub02_1 .choice_person ul li:hover input[type=radio] + label, .sub02_1 .choice_person ul li:hover input[type=radio] + label,
.sub02_1 .choice_person ul li input[type=radio]:checked + label {color:#fff;border-color:#2353b5;background-color:#2353b5;box-shadow: 0 0 5px rgba(0,0,0,0.3);} .sub02_1 .choice_person ul li input[type=radio]:checked + label {color:#fff;border-color:#2353b5;background-color:#2353b5;box-shadow: 0 0 5px rgba(0,0,0,0.3);}
.sub02_1 .choice_person ul li:hover input[type=radio] + label .sub_te, .sub02_1 .choice_person ul li:hover input[type=radio] + label .sub_te,
.sub02_1 .choice_person ul li input[type=radio]:checked + label .sub_te{color:#fff !important;} .sub02_1 .choice_person ul li input[type=radio]:checked + label .sub_te,.sub02_1 .choice_person ul li:hover input[type=radio] + label p,
.sub02_1 .choice_person ul li input[type=radio]:checked + label p{color:#fff !important;transition:all 0.3s ease-in-out;}
.step_wrap{display: flex; width: 100%; margin-bottom: 50px;} .step_wrap{display: flex; width: 100%; margin-bottom: 50px;}

View File

@ -283,8 +283,8 @@ function boardCaptionToggle02(){
var subTit = $(".cont_tit h2").text(); var subTit = $(".cont_tit h2").text();
var itmText = ""; var itmText = "";
$(".tbType01").each(function(idx,tb){ $(".tbType01").each(function(idx,tb){
var thLength = $(tb).find("tbody>tr>th").length; var thLength = $(tb).find("tbody>tr>th:visible").length;
$(tb).find("tbody>tr>th").each(function(index,item){ $(tb).find("tbody>tr>th:visible").each(function(index,item){
itmText += $(item).text(); itmText += $(item).text();
if (index === thLength - 1) { if (index === thLength - 1) {
//마지막 th일 경우 - ,가 들어가면 안됨. //마지막 th일 경우 - ,가 들어가면 안됨.

View File

@ -92,6 +92,13 @@ $(document).ready(function () {
$('.popup_tab_wrap .tab_ul .tab_li,.glossary_left_area ul li').on('click',function(){ $('.popup_tab_wrap .tab_ul .tab_li,.glossary_left_area ul li').on('click',function(){
$(this).addClass('on').siblings().removeClass('on'); $(this).addClass('on').siblings().removeClass('on');
}); });
$(".btn_form_download").click(function(){
setTimeout(function(){
popupboardCaptionToggle();
},100);
})
}); });
function popupboardCaptionToggle(){ function popupboardCaptionToggle(){