关于弹出子画面和关闭子画面问题
在原来的画面中的代码是这样的:
function fnCallDialog(uuId)
{
//返回参数
var param="";
var returnVal = window.showModalDialog("/eisp/member /manager.do?memberInfoParambean.uuId="+ uuId,"_blank","dialogWidth:600px;dialogHeight:400px;help:no;scroll:yes;center:yes;status:no;",param);
//重新检索
if(returnVal != null){
document.forms[0].action="/eisp/member/back.do";
document.forms[0].method="post";
document.forms[0].submit();
}
}
子画面中的代码:
function insertUser(){
document.forms[0].action="/eisp/member/back.do";
document.forms[0].method="post";
document.forms[0].submit();
//返回值
//window.returnValue=$('uuId').value;
//关闭窗口
window.opener=null;
window.open('','_self');
window.close();
}
为什么关闭子画面的时候,又重新弹出一个画面,然后才关闭子画面呢,怎么能让子画面关闭的时候不弹出画面,直接关闭呢?
谢谢大家