관리 메뉴

I LOVE EJ

SELECT BOX에서 선택된 OPTION의 VALUE와 TEXT를 모두 가져오는 방법 본문

Web publishing/JavaScript

SELECT BOX에서 선택된 OPTION의 VALUE와 TEXT를 모두 가져오는 방법

BeOne 2008. 8. 1. 15:56

<html>
 <head>
  <title> new document </title>
<script>
function SetValue()
{
 var fm = document.MyForm;
// alert(fm.getVal.options[fm.getVal.selectedIndex].value);
// alert(fm.getVal.options[fm.getVal.selectedIndex].text);
 fm.getTxt.value = fm.getVal.options[fm.getVal.selectedIndex].text;
}
</script>
 </head>
 <body>
<form name='MyForm'>

<select name='getVal'>
 <option value='0'>가</option>
 <option value='1'>나</option>
 <option value='2'>다</option>
 <option value='3'>라</option>
</select>

<br>
<input type='text' name='getTxt'>
<br>
<input type='button' value='값체크' onclick='javascript:SetValue();'>
</form>
 </body>
</html>


위와 같은식으로 여러개의 'getTxt' 를 생성해 놓으면 받는 쪽에서 해당 파라미터를

받아서 사용하면 됩니다.