欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关闭子窗口刷新父窗口

程序员文章站 2022-04-04 23:16:56
...

以下这段代码是为了弹出一个窗口,window.showModalDialog这个是弹出窗体的地方,当执行到的时候它后面的代码就不执行了,当把弹出的窗体关闭将会执行后面的location.reload();这样就实现了,关闭子窗口刷新父窗口的功能。

 


  
function funcShowModalDialog(url,iWidth,iHeight) {        var width=850;         var height=600;        if (iWidth != "") {          width=iWidth        }        if (iHeight != "") {          height=iHeight        }              var iTop=(window.screen.height-iHeight)/2;        var iLeft=(window.screen.width-iWidth)/2;        var target = "dialogHeight: "+height+"px;dialogWidth: "+width+"px;dialogTop: "+iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no;help:no";        //window.showModalDialog(url,window,"dialogHeight: "+height+"px;dialogWidth: "+width+"px;dialogTop: "+iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no;help:no");               var retVal = window.showModalDialog("dialog/dialogFrm.html" ,url ,target);         //刷新父页面         location.reload();           }    

 

本文出自 “乔磊的博客 学习 进步” 博客,请务必保留此出处http://sucre.blog.51cto.com/1084905/416779

转载于:https://my.oschina.net/sucre/blog/296250