毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> WEB开发 >> 正文

EXT 弹出窗口该如何关闭

更新时间:2013-4-19:  来源:毕业论文

EXT 弹出窗口该如何关闭

function showANewWindow(url,title){ topWin= new top.Ext.Window({                        id:'topWindow', title:title,                    width:650,                        height:    450, resizable:true, constrain     :true, plain           :true, autoScroll     :true, maximizable     :true, modal: true, html:'<iframe id="newWindowFrame"  src="'+url+'" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>'});topWin.show();   }


然后在这个窗口里面载入一个jsp页面,在这个jsp页面里面有一个毕业论文 


 Ext.onReady(function(){             var i = document.getElementById("i");             alert(i.value);             window.moveTo(1500, 1500);             window.parent.document.getElementById("");         });


这样的代码,页面载入时就自动触发,然后拿到i后,想做一个判断,如果符合判断的话,就弹出一个alert("warning");然后把上面弹出来的窗口给关闭掉,我可以肯定i是可以拿到的,但无论我用window.close();还是window.parent.document.getElementById("");窗口ID我没有找到!
我想问下,该如何才可以把我这个弹出来的窗口关闭掉呢? 

var topWin;////// function showANewWindow(url,title){ topWin= new top.Ext.Window({                        id:'topWindow', title:title,                    width:650,                        height:    450, resizable:true, constrain     :true, plain           :true, autoScroll     :true, maximizable     :true, modal: true, html:'<iframe id="newWindowFrame"  src="'+url+'" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>'});topWin.show();   }

 Ext.onReady(function(){             var i = document.getElementById("i");             alert(i.value);             window.moveTo(1500, 1500);             window.parent.document.getElementById(""); parent.topWin.close();////////         });
既然页面在ext的window中,直接关闭ext的窗体不就ok了

试试
function showANewWindow(url,title){
topWin= new top.Ext.Window({                      
id:'topWindow',
title:title,                  
width:650,                      
height:    450,
resizable:true,
constrain     :true,
plain           :true,
autoScroll     :true,
maximizable     :true,
modal: true,
html:'<iframe id="newWindowFrame"  src="'+url+'" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>'
});topWin.show();
window.topWnd=topWin;
}


子页面:
Ext.onReady(function(){
            var i = document.getElementById("i");
            alert(i.value);
            window.parent.window.topWnd.close();   
    });

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。