showModalDialog刷新父页面

function OnClick()

{

var returnValue = window.showModalDialog(。。。。。。);
  if (returnValue != null && returnValue == 'OK')
  {
  页面调用方法,模式对话框关闭后调用    

  }

模式对话框:aspx 关闭按钮

function OnClick()

{

window.returnValue = 'OK';

window.close();

}

如此,就可以调用模式对话框,并在模式对话框关闭后调用父页面的方法。

你可能感兴趣的:(showModalDialog刷新父页面)