当前位置: 代码迷 >> JavaScript >> 在使用模态窗口的 showmodaldialog 时,怎么在不关闭模态窗口的同时,刷新父页面
  详细解决方案

在使用模态窗口的 showmodaldialog 时,怎么在不关闭模态窗口的同时,刷新父页面

热度:111   发布时间:2012-02-17 17:50:42.0
在使用模态窗口的 showmodaldialog 时,如何在不关闭模态窗口的同时,刷新父页面
在使用模态窗口的   showmodaldialog   时,如何在不关闭模态窗口的同时,刷新父页面

------解决方案--------------------
index.html

<input type=button onclick= "showModalDialog( 'a.html ',window) " value= "open ">

a.html

<input type=button onclick= "dialogArguments.document.write( 'HELLO ') " value= "refresh ">
  相关解决方案