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();
});