본문 바로가기
웹프로그램

자바스크립트 select 셀렉트 박스 선택한 값을 받아오기

by 세이박스 2008. 11. 7.
반응형
ff.bg.options[bg_frm.bg.selectedIndex].value;
ff -> 폼 이름
bg -> 셀렉트박스 이름
 
 
<script>
function bg_preview() {
 var ff = document.bg_frm;
 var url = ff.bg.options[bg_frm.bg.selectedIndex].value;
 alert(url);
}
</script>
 
<from name="bg_frm">
 <select name="bg" id="bg">
  <option value="1">1</option>
  <option value="2">2</option>
 </select>
</form>

위 글은 세이박스에서 직접 작성한 것으로 퍼가실 경우 반드시 출처와 함께 남기시길 바랍니다.
출처 : 세이박스 http://saybox.tistory.com/

반응형