form action을 post방식으로 popup띄울수 있나
컨텐츠 정보
- 22,115 조회
- 7 추천
- 목록
본문
unction form_submit(){
chk = window.open('about:blank','네임값','width=300,height=400,scrollbars=yes');
if(chk != null){
폼네임.target='네임값';
폼네임.action='보낼문서'; //action은 요기에
폼네임.submit();
}
}
<form name=폼네임 method=post>
<input type=button onclick='form_submit();'>
</form>
chk = window.open('about:blank','네임값','width=300,height=400,scrollbars=yes');
if(chk != null){
폼네임.target='네임값';
폼네임.action='보낼문서'; //action은 요기에
폼네임.submit();
}
}
<form name=폼네임 method=post>
<input type=button onclick='form_submit();'>
</form>
관련자료
댓글 0
등록된 댓글이 없습니다.