form POST 전달
본문
안녕하세요.
스크립트로 폼자료를 자식창에 전달하는 것을 함수로 만들었는데,
함수에 폼이르을 어떻게 전달하나요?
<script>
function callChild(no, url) {
var windowTargetName = "targetName";
var features = "scrollbars=yes,width=1000,height=800,location=no, resizable=yes";
window.open(url, windowTargetName, features);
document.forms[no].action=url; // 이동
document.forms[no].method="POST";
document.forms[no].target=windowTargetName;
document.forms[no].submit();
}
callChild("<?php echo $i; ?>","<?php echo $myUrl; ?>");
</script>
제가 하고 싶은 것은 callChild(no, url)에서 no 대신에 formname을 넣고 싶습니다.
function callChild(frmName, url) {
var frmData = document.frmName ;
.....
frmData.submit();
위와 같이 변경하니 동작하지 않습니다.
어떻게 고쳐야 하는지 부탁드립니다.
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.