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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4946 | node.js | 6년 전 | 2616 | ||
| 4945 | node.js | 6년 전 | 2388 | ||
| 4944 | node.js | 6년 전 | 2525 | ||
| 4943 | node.js | 6년 전 | 2277 | ||
| 4942 | node.js | 6년 전 | 2258 | ||
| 4941 | node.js | 6년 전 | 2723 | ||
| 4940 | node.js | 6년 전 | 1869 | ||
| 4939 | node.js | 6년 전 | 1997 | ||
| 4938 | node.js | 6년 전 | 2461 | ||
| 4937 | node.js | 6년 전 | 2253 | ||
| 4936 | node.js | 6년 전 | 2327 | ||
| 4935 | node.js | 6년 전 | 2141 | ||
| 4934 | node.js | 6년 전 | 2452 | ||
| 4933 | node.js | 6년 전 | 2251 | ||
| 4932 | node.js | 6년 전 | 2691 | ||
| 4931 | node.js | 6년 전 | 2076 | ||
| 4930 | node.js | 6년 전 | 2002 | ||
| 4929 | node.js | 6년 전 | 8638 | ||
| 4928 | node.js | 6년 전 | 3756 | ||
| 4927 | node.js | 6년 전 | 2399 | ||
| 4926 | node.js | 6년 전 | 2508 | ||
| 4925 | node.js | 6년 전 | 2092 | ||
| 4924 | node.js | 6년 전 | 3378 | ||
| 4923 | node.js | 6년 전 | 2227 | ||
| 4922 | node.js | 6년 전 | 1995 | ||
| 4921 | node.js | 6년 전 | 2050 | ||
| 4920 | node.js | 6년 전 | 1769 | ||
| 4919 | node.js | 6년 전 | 2041 | ||
| 4918 | node.js | 6년 전 | 2184 | ||
| 4917 | node.js | 6년 전 | 2399 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기