这个问题解决了,主要是我在模态对话框中加了一句 window.close();去掉就可以了- //URL打开页面的路径
- //页面标题
- //页面高度
- //页面宽度
- function OpenCustomWindowNew(URL, Title, Height, Width) {
- if (Height == null || Height == "") {
- Height = 430;
- }
- if (Width == null || Width == "") {
- Width = 620;
- }
- var para = "dialogHeight:" + Height + "px;dialogWidth:" + Width + "px;toolbar:no;menubar:no;scroll:no;resizable:no;location:no;status:no;center:yes;help:no";
- window.showModalDialog(URL, Title, para);
- return false;
- }
复制代码 |