一、在父窗体中写如下方法:
function department_cancel()
{
<%-- 调用intiForm方法,用于刷新页面--%>
goWithButton('initForm');
}
{
<%-- 调用intiForm方法,用于刷新页面--%>
goWithButton('initForm');
}
二、在子窗体中的关闭方法中调用父窗体的department_cancel方法如下:
function close()
{
var callerWindowObj = window.dialogArguments;
callerWindowObj.department_cancel();
self.close();
}
{
var callerWindowObj = window.dialogArguments;
callerWindowObj.department_cancel();
self.close();
}
转载于:https://blog.51cto.com/daimi5566/37511