셀렉트에서 onchange시 값을 가져가서 다시 갱신하기
페이지 정보
작성자 최고관리자 작성일 21-02-10 17:24 조회 6,966 댓글 0본문
셀렉트에서 onchange시 값을 가져가서 다시 갱신하기
<script language='javascript'>
<!--
function hospitaladd(){
// 선택된 index value
var h_uid = document.signform.hospital_uid.value;
var url = "aaa.html?h_uid=" + h_uid;
window.open(url, 'new_win','width=20, height=20, scrollbars=yes resizable=yes top=102400,left=128000');
}
//-->
</script>
<select name=hospital_uid size=1 OnChange="hospitaladd();">
<option></option>
</select>
<script language='javascript'>
<!--
function hospitaladd(){
// 선택된 index value
var h_uid = document.signform.hospital_uid.value;
var url = "aaa.html?h_uid=" + h_uid;
window.open(url, 'new_win','width=20, height=20, scrollbars=yes resizable=yes top=102400,left=128000');
}
//-->
</script>
<select name=hospital_uid size=1 OnChange="hospitaladd();">
<option></option>
</select>
댓글목록 0
등록된 댓글이 없습니다.