자주하는 질문, 1:1문의, 불편신고 메뉴 label for 아이디 매칭 오류 수정

This commit is contained in:
rosewiper 2024-01-10 11:20:34 +09:00
parent 4c018eaefa
commit e543f5775f
4 changed files with 12 additions and 12 deletions

View File

@ -114,25 +114,25 @@
<div class="input_list_item bis_status">
<div class="input_left">이메일</div>
<div class="input_right">
<label for="" class="label">이메일 주소 앞자리</label>
<input type="text" value="${fn:substringBefore(mberManageVO.mberEmailAdres, '@')}" class="list_inputType1" disabled>
<label for="emailId" class="label">이메일 주소 앞자리</label>
<input type="text" id="emailId" value="${fn:substringBefore(mberManageVO.mberEmailAdres, '@')}" class="list_inputType1" disabled>
<span>@</span>
<label for="" class="label">이메일 주소 뒷자리</label>
<input type="text" value="${fn:substringAfter(mberManageVO.mberEmailAdres, '@')}" class="list_inputType1" disabled>
<label for="emailDomain" class="label">이메일 주소 뒷자리</label>
<input type="text" id="emailDomain" value="${fn:substringAfter(mberManageVO.mberEmailAdres, '@')}" class="list_inputType1" disabled>
</div>
</div>
<div class="input_list_item">
<div class="input_left">휴대폰</div>
<div class="input_right">
<label for="" class="label">휴대폰</label>
<input type="text" class="list_inputType1" value="${mberManageVO.moblphonNo}" disabled>
<label for="moblphonNo" class="label">휴대폰</label>
<input type="text" class="list_inputType1" id="moblphonNo" value="${mberManageVO.moblphonNo}" disabled>
</div>
</div>
<c:if test="${boardType ne 'suggest'}">
<div class="input_list_item">
<div class="input_left">구분</div>
<div class="input_right">
<label for="" class="label">구분 선택</label>
<label for="bbsId" class="label">구분 선택</label>
<select class="list_selType1" name="bbsId" id="bbsId">
<c:forEach var="result" items="${boardMenuList}" varStatus="status">
<option value="${result.bbsId}">${result.bbsNm}</option>
@ -147,14 +147,14 @@
<div class="input_list_item">
<div class="input_left">제목</div>
<div class="input_right">
<label for="" class="label">문의사항 제목</label>
<label for="nttSj" class="label">문의사항 제목</label>
<input type="text" name="nttSj" id="nttSj" value="" class="list_inputType1" placeholder="문의사항 제목 입력" onfocus="this.placeholder=''" onblur="this.placeholder='문의사항 제목 입력 입력'">
</div>
</div>
<div class="input_list_item textWrap">
<div class="input_left">내용</div>
<div>
<label for="" class="label">문의내용</label>
<label for="nttCn" class="label">문의내용</label>
<form:textarea path="nttCn"/>
</div>
</div>

View File

@ -123,7 +123,7 @@ function linkPage(pageNo){
<div>
<div class="search_wrap clearfix">
<div class="btn_left">
<label for="" class="label">검색조건 선택</label>
<label for="searchSel" class="label">검색조건 선택</label>
<select name="searchCnd" id="searchSel" class="selType2">
<option value="" <c:if test="${searchVO.searchCnd == ''}">selected="selected"</c:if>>전체</option>
<option value="0" <c:if test="${searchVO.searchCnd == '0'}">selected="selected"</c:if>>제목</option>

View File

@ -161,7 +161,7 @@ function linkPage(pageNo){
<button type="button" class="btnType btnType2" onclick="javascript:linkPage('1'); return false;"><img src="/publish/images/content/searchW.png" alt="검색"></button>
</div>
<div class="btn_right2">
<label for="searchCnd" class="label">검색조건 선택</label>
<label for="searchSel" class="label">검색조건 선택</label>
<select name="searchCnd" id="searchSel" class="selType2">
<option value="" <c:if test="${searchVO.searchCnd == ''}">selected="selected"</c:if>>전체</option>
<option value="0" <c:if test="${searchVO.searchCnd == '0'}">selected="selected"</c:if>>제목</option>

View File

@ -161,7 +161,7 @@ function linkPage(pageNo){
<button type="button" class="btnType btnType2" onclick="javascript:linkPage('1'); return false;"><img src="/publish/images/content/searchW.png" alt="검색"></button>
</div>
<div class="btn_right2">
<label for="searchCnd" class="label">검색조건 선택</label>
<label for="searchSel" class="label">검색조건 선택</label>
<select name="searchCnd" id="searchSel" class="selType2">
<option value="" <c:if test="${searchVO.searchCnd == ''}">selected="selected"</c:if>>전체</option>
<option value="0" <c:if test="${searchVO.searchCnd == '0'}">selected="selected"</c:if>>제목</option>