Ext.net 使用了tab 控件,但是加载的时候用的iframe,导致里面如果有window弹出框,并且要全屏显示的时候,不能跳出iframe显示。
function addMainTab(tabPanel, url, id, title, icon) {
var tab = Ext.getCmp(id);
if (!tab) {
tab = {
id: id,
title: title,
closable: false,
iconCls: "#" + icon,
loader: {
url: url,
renderer: "frame",
loadMask: {
showMask: true,
msg: "数据加载中,请稍候!"
}
}
};
}
tabPanel.add(tab);
}
iframe页面里面如果有弹出框,则需要使用window.parent来加入你要新建的window对象,这样就可以跳出iframe显示,同时因为是new出来的,所以所有有关这个对象里面的js对象前面也要加window.parent,top同样也是。
function OpenChildWindow(winID, title, url, width, height, icon) {
var w = width;
var h = height;
if (!w || !h) {
w = 600;
h = 400;
}
win = new window.parent.Ext.Window({
//win = new top.Ext.Window({
id: "w" + winID,
layout: "fit",
title: title,
modal: true,
iconCls: "#" + icon,
width: w,
height: h,
border: false,
maximizable: false,
constrain: true,
closeAction: "destroy",
loader: {
url: url,
renderer: "frame",
scripts: true,
loadMask: {
showMask: true,
msg: "Loading..."
}
},
listeners: {
'resize': function (e) {
//var imageshow = Ext.get('imageshow').getValue();
//var imageshow = Ext.fly('imageshow');
//var maxWd = window.innerWidth;
//var maxHt = window.innerHeight;
//var maxWd = document.getElementsByTagName('iframe')[0].contentWindow.document.documentElement.clientWidth;
//var maxHt = document.getElementsByTagName('iframe')[0].contentWindow.document.body.clientHeight;
//alert("Height" + maxHt + "------width" + maxWd );
var prtExt = window.parent.Ext;
var maxWd = e.width - 10;
var maxHt = e.height - 30;
console.log(typeof (maxWd));
//new Ext.Window({ new出来的写法
//var h_iframe = document.getElementsByTagName('iframe')[0]//.getElementsByTagName('img');
//if (typeof (h_iframe) == 'undefined') {
// return false;
//}
//var HidWidth = document.getElementsByTagName('iframe')[0].contentWindow.document.getElementById('HidWidth');
//var HidHeight = document.getElementsByTagName('iframe')[0].contentWindow.document.getElementById('HidHeight');
//var img_arr = document.getElementsByTagName('iframe')[0].contentWindow.document.getElementsByTagName('img');
var h_iframe=prtExt.getCmp('wWinCust').iframe;
if (typeof (h_iframe) == 'undefined') {
return false;
}
var HidWidth = prtExt.getCmp('wWinCust').iframe.dom.contentWindow.document.getElementById('HidWidth');
var HidHeight = prtExt.getCmp('wWinCust').iframe.dom.contentWindow.document.getElementById('HidHeight');
var img_arr = window.parent.Ext.getCmp('wWinCust').iframe.dom.contentWindow.document.getElementsByTagName('img');
HidWidth.value = maxWd;
HidHeight.value = maxHt;
console.log(maxWd + "---" + maxHt);
if (img_arr.length == 0) {
return false;
}
var h_img;
var h_id = "imageshow";
for (var i = 0; i < img_arr.length; i++) {
if (img_arr[i].id == h_id)
h_img = img_arr[i];
}
h_img.width = parseInt(''+ maxWd+'');
h_img.height = parseInt('' + maxHt + '');
//console.log(h_iframe);
console.log(h_img);
}
}
});
win.show();
}
JS获取/设置iframe内对象元素、文档的几种方法
1、IE专用(通过frames索引形象定位):
document.frames[i].document.getElementById('元素的ID');
2、IE专用(通过iframe名称形象定位):
document.frames['iframe的name'].document.getElementById('元素的ID');
以上方法,不仅对iframe适用,对frameset里的frame也同样适用。IE虽然擅于自定标准,但不得不说它很多的设计还是比较体现人性化的。比如这个,它在同样支持下面的标准路径之外,提供了一个简洁且形象化的写法。
document.getElementById('iframe的ID').contentWindow.document.getElementById('元素的ID')
function ShowExit() {
//获取iframe的window对象
var topWin = window.top.document.getElementById("topNav").contentWindow;
//通过获取到的window对象操作HTML元素,这和普通页面一样
topWin.document.getElementById("exit").style.visibility = "visible";
}