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