select값 선택시 선택 값이 저장되고, 여분필드에 별도 지정값이 저장방법?
1. 질문내용
1) select값 선택시 wr_8에 선택 값이 저장되게 되어 있습니다.
2) 아래소스내용과 같이
- <option value="반차"<?if($write[wr_8]=="반차") {echo "selected";} ?>반차</option>를 선택하면,
여분필드인 wr_8에 값이 "반차"라고 저장됩니다.
- 반차로 선택했을때, 별도 wr_9 여분필드에 "전결"이라는 값이 자동 저장되도록 하고 싶습니다.
3) 테이블
==========================================
컬럼명 | wr_8 | wr_9 | ......
==========================================
저장값 | 반차 | 전결 | .....
-------------------------------------------------------------------------
저장값 | 연차 | | .....
-------------------------------------------------------------------------
4) write.skin.php 소스내용
<select required class="nbo_write_text write_select_title" name="wr_8" id="wr_8" style="width:250px" maxlength="20">
<option value="" >===선 택===</option>
<option value="연차휴가"<?if($write[wr_8]=="연차휴가") { echo "selected";} ?>연차휴가</option>
<option value="반차"<?if($write[wr_8]=="반차") {echo "selected";} ?>반차</option>
</select>
고수님들의 좋은 해결방안을 부탁드립니다.
감사합니다.
댓글 3개
$wr_9 ='전결'
...
<option value="반차">반차</option>
...
</secect>
<input type="hidden" id="wr_9" name="wr_9">
//가장 하단부에 아래 스크립트
<script>
wr_8.value = "<?php echo $write['wr_8']; ?>";
wr_9.value = "<?php echo $write['wr_9']; ?>";
btn_submit.addEventListener("click", function() {
if (wr_8.value == "반차") wr_9.value = "전결";
} );
</script>
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4856 | PHP | 7년 전 | 5730 | ||
| 4855 | jQuery | 7년 전 | 3234 | ||
| 4854 | jQuery | 7년 전 | 2225 | ||
| 4853 | jQuery | 7년 전 | 2825 | ||
| 4852 | MySQL | 7년 전 | 2993 | ||
| 4851 | jQuery | 7년 전 | 2339 | ||
| 4850 | jQuery | 7년 전 | 2569 | ||
| 4849 | jQuery | 7년 전 | 4307 | ||
| 4848 | PHP |
|
7년 전 | 4246 | |
| 4847 | jQuery | 7년 전 | 4019 | ||
| 4846 | jQuery | 7년 전 | 2629 | ||
| 4845 | jQuery | 7년 전 | 2151 | ||
| 4844 | jQuery | 7년 전 | 2298 | ||
| 4843 | jQuery | 7년 전 | 3053 | ||
| 4842 | jQuery | 7년 전 | 2898 | ||
| 4841 | jQuery | 7년 전 | 2228 | ||
| 4840 | jQuery | 7년 전 | 1565 | ||
| 4839 | jQuery | 7년 전 | 2466 | ||
| 4838 | jQuery |
이에스씨코리아
|
7년 전 | 2311 | |
| 4837 | jQuery | 7년 전 | 2161 | ||
| 4836 | jQuery | 7년 전 | 2086 | ||
| 4835 | jQuery | 7년 전 | 1816 | ||
| 4834 | jQuery | 7년 전 | 1865 | ||
| 4833 | jQuery | 7년 전 | 1992 | ||
| 4832 | jQuery | 7년 전 | 2183 | ||
| 4831 | jQuery | 7년 전 | 2362 | ||
| 4830 | jQuery | 7년 전 | 2629 | ||
| 4829 | jQuery | 7년 전 | 1802 | ||
| 4828 | jQuery | 8년 전 | 2741 | ||
| 4827 | jQuery | 8년 전 | 2281 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기