감리위반 웹접근성 처리

This commit is contained in:
JSYOO 2021-12-03 11:47:49 +09:00
parent 3a8bf8823c
commit 07d1ebc7ba
4 changed files with 24 additions and 12 deletions

View File

@ -128,7 +128,7 @@ function goList(){
<c:if test='${result.mUseYn != "Y"}'> <c:if test='${result.mUseYn != "Y"}'>
<button type="button" class="favorit" onclick="gfn_changeInterestBtn('${result.masterId }', 'on');">즐겨찾기</button> <button type="button" class="favorit" onclick="gfn_changeInterestBtn('${result.masterId }', 'on');">즐겨찾기</button>
</c:if> </c:if>
<button type="button" class="share" onclick="gfn_setSnsShare('<c:out value="${result.masterId}"/>')";>공유</button> <button type="button" class="share" onclick="gfn_setSnsShare('<c:out value="${result.masterId}"/>');">공유</button>
</div> </div>
<div class="con-2"> <div class="con-2">
<div class="de-data"> <div class="de-data">
@ -363,7 +363,7 @@ function goList(){
<div class="con-2"> <div class="con-2">
<div class="top"> <div class="top">
<h3><span>목차</span>정보</h3> <h3><span>목차</span>정보</h3>
<button type="button" class="down-btn" alt="접기/펼치기">down-btn</button> <button type="button" class="down-btn" title="접기/펼치기">down-btn</button>
</div> </div>
<div class="bottom h-down"> <div class="bottom h-down">
<p><c:if test="${empty result.bookIndex }">없음</c:if><c:out value="${result.bookIndex }"/></p> <p><c:if test="${empty result.bookIndex }">없음</c:if><c:out value="${result.bookIndex }"/></p>
@ -387,7 +387,7 @@ function goList(){
</div> </div>
<div class="con-2"> <div class="con-2">
<p class="typ"><span>자료유형</span><span><c:if test="${empty result.typeDivNm and empty result.dtlsTypeDivNm}">-</c:if> ${result.typeDivNm } <c:if test="${!empty result.typeDivNm and !empty result.dtlsTypeDivNm}">&gt;</c:if>${result.dtlsTypeDivNm}</span></p> <p class="typ"><span>자료유형</span><span><c:if test="${empty result.typeDivNm and empty result.dtlsTypeDivNm}">-</c:if> ${result.typeDivNm } <c:if test="${!empty result.typeDivNm and !empty result.dtlsTypeDivNm}">&gt;</c:if>${result.dtlsTypeDivNm}</span></p>
<p class="sub"><span>주제분야</span><span><c:if test="${empty result.subjectNmUp and empty result.subjectNm}">-</c:if> ${result.subjectNm } <c:if test="${!empty result.subjectNmUp and !empty result.subjectNm}">&gt;</c:if>${result.subjectNm}</span></span></p> <p class="sub"><span>주제분야</span><span><c:if test="${empty result.subjectNmUp and empty result.subjectNm}">-</c:if> ${result.subjectNm } <c:if test="${!empty result.subjectNmUp and !empty result.subjectNm}">&gt;</c:if>${result.subjectNm}</span></p>
<p class="age"><span>생산기관</span><span><c:if test="${empty result.orgNm }">-</c:if>${result.orgNm }</span></p> <p class="age"><span>생산기관</span><span><c:if test="${empty result.orgNm }">-</c:if>${result.orgNm }</span></p>
<p class="yea"><span>생산년도</span><span><c:if test="${empty result.creatYyyy }">-</c:if>${result.creatYyyy }</span></p> <p class="yea"><span>생산년도</span><span><c:if test="${empty result.creatYyyy }">-</c:if>${result.creatYyyy }</span></p>
</div> </div>

View File

@ -68,10 +68,22 @@ function signUp(){
alert("생년월일이 형식에 맞지 않습니다. 확인해주세요."); alert("생년월일이 형식에 맞지 않습니다. 확인해주세요.");
return false; return false;
} }
if($("#mobileNo_1").val() == "" || $("#mobileNo_2").val() == "" || $("#mobileNo_3").val() == "") if($("#mobileNo_1").val() == "")
{ {
$("#mobileNo_1").focus(); $("#mobileNo_1").focus();
alert("휴대폰 번호를 입력해주세요."); alert("휴대폰 번호 앞자리를 입력해주세요.");
return false;
}
if($("#mobileNo_2").val() == "")
{
$("#mobileNo_2").focus();
alert("휴대폰 번호 중간자리를 입력해주세요.");
return false;
}
if($("#mobileNo_3").val() == "")
{
$("#mobileNo_3").focus();
alert("휴대폰 번호 끝자리를 입력해주세요.");
return false; return false;
} }
if($("#mobileCertYn").val()!="Y") if($("#mobileCertYn").val()!="Y")
@ -620,9 +632,9 @@ function fn_cancel(){
<label>휴대폰 번호</label> <label>휴대폰 번호</label>
<div class="con mobile"> <div class="con mobile">
<div class="row"> <div class="row">
<label for="mobileNo_1" class="blind">ex)010</label><input class="form-control mobile1" type="text" id="mobileNo_1" value="010" title="010" maxlength="3" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"/> - <input class="form-control mobile1" type="text" id="mobileNo_1" value="010" title="휴대폰 번호 앞자리" maxlength="3" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"/> -
<label for="mobileNo_2" class="blind">1234</label><input class="form-control mobile2" type="text" id="mobileNo_2" value="" maxlength="4" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"/> - <input class="form-control mobile2" type="text" id="mobileNo_2" value="" title="휴대폰 번호 중간자리" maxlength="4" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"/> -
<label for="mobileNo_3" class="blind">5678</label><input class="form-control mobile3" type="text" id="mobileNo_3" value="" maxlength="4" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"/> <input class="form-control mobile3" type="text" id="mobileNo_3" value="" title="휴대폰 번호 끝자리" maxlength="4" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');"/>
<button type="button" class="btn-color" id="mobileCertSendBtn" name="mobileCertSendBtn" style="display:none;" onclick="mobileCert();">인증하기</button> <button type="button" class="btn-color" id="mobileCertSendBtn" name="mobileCertSendBtn" style="display:none;" onclick="mobileCert();">인증하기</button>
<button type="button" class="btn-black" id="mobileReSend" style="display:none;" onclick="mobileCert();">재전송</button> <button type="button" class="btn-black" id="mobileReSend" style="display:none;" onclick="mobileCert();">재전송</button>
</div> </div>
@ -657,7 +669,7 @@ function fn_cancel(){
<div class="con addr"> <div class="con addr">
<div class="row"> <div class="row">
<label for="zipCode" class="blind">우편번호</label><input class="form-control addr1" type="text" id="zipCode" name="zipCode" readonly placeholder="우편번호" title="우편번호" /> <label for="zipCode" class="blind">우편번호</label><input class="form-control addr1" type="text" id="zipCode" name="zipCode" readonly placeholder="우편번호" title="우편번호" />
<button type="button" class="btn-color" onclick="sample6_execDaumPostcode();">우편번호</button> <button type="button" title="새창 열림" class="btn-color" onclick="sample6_execDaumPostcode();">우편번호</button>
</div> </div>
<div class="row"> <div class="row">
<label for="address" class="blind">주소</label><input class="form-control addr2" type="text" id="address" name="address" readonly placeholder="주소" title="주소"/> <label for="address" class="blind">주소</label><input class="form-control addr2" type="text" id="address" name="address" readonly placeholder="주소" title="주소"/>

View File

@ -92,7 +92,7 @@ function cancle(){
<div class="use"> <div class="use">
<div class="con-1"> <div class="con-1">
<div class="title"><c:out value="${termTitle}" escapeXml="false"/></div> <div class="title"><c:out value="${termTitle}" escapeXml="false"/></div>
<div class="chk"><input type="checkbox" id="pri-chk1" name="agree"><label for="pri-chk1">동의합니다.</label></div> <div class="chk"><input type="checkbox" id="pri-chk1" name="agree" title="이용약관(공통)"><label for="pri-chk1">동의합니다.</label></div>
</div> </div>
<div class="con-2"> <div class="con-2">
<div class="textarea mCustomScrollbar" data-mcs-theme="dark-2"> <div class="textarea mCustomScrollbar" data-mcs-theme="dark-2">
@ -103,7 +103,7 @@ function cancle(){
<div class="pri"> <div class="pri">
<div class="con-1"> <div class="con-1">
<div class="title"><c:out value="${privacyTitle}" escapeXml="false"/></div> <div class="title"><c:out value="${privacyTitle}" escapeXml="false"/></div>
<div class="chk"><input type="checkbox" id="pri-chk2" name="agree"><label for="pri-chk2">동의합니다.</label></div> <div class="chk"><input type="checkbox" id="pri-chk2" name="agree" title="개인정보처리정책"><label for="pri-chk2">동의합니다.</label></div>
</div> </div>
<div class="con-2"> <div class="con-2">
<div class="textarea mCustomScrollbar" data-mcs-theme="dark-2"> <div class="textarea mCustomScrollbar" data-mcs-theme="dark-2">

View File

@ -362,7 +362,7 @@ var QRCode;
this._oContext = this._elCanvas.getContext("2d"); this._oContext = this._elCanvas.getContext("2d");
this._bIsPainted = false; this._bIsPainted = false;
this._elImage = document.createElement("img"); this._elImage = document.createElement("img");
this._elImage.alt = "자료상세 바로가기"; this._elImage.alt = "자료상세 QR코드(" + $("#p_link-copy").val() + ")";
this._elImage.style.display = "none"; this._elImage.style.display = "none";
this._el.appendChild(this._elImage); this._el.appendChild(this._elImage);
this._bSupportDataURI = null; this._bSupportDataURI = null;