日期:2014-05-16 浏览次数:20626 次
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("");
});
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的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();
});
------解决方案--------------------
因为你topWin是定义的局部变量,你可以这样,在你的jsp页面里编写
Ext.onReady(function(){
var i = document.getElementById("i");
alert(i.value);
window.moveTo(1500, 1500);
window.parent.document.getElementById("");
//parent.topWin.close();////////
////////////////////////////////////////////////条件成立时,你执行下面的关闭窗体
var _topWindow = window.parent.Ext.getCmp("topWindow");
if (_topWindow) {
topWindow.close();
}
});