gpt4 book ai didi

javascript - Extjs 4 : Create an iFrame Window

转载 作者:行者123 更新时间:2023-12-03 02:20:48 25 4
gpt4 key购买 nike

我需要在 Extjs 中创建一个 iFrame 窗口。以前在 ExtJS 3.x 中我会这样做:

bodyCfg: {
tag: 'iframe'
}

但是ExtJS 4的Window类似乎没有bodyCfg。

关于如何制作 iFrame ExtJS 4 窗口有什么想法吗?

最佳答案

我认为 autoEl 就是您正在寻找的...

我的一些建议,在 Ext 4.x 中不要使用 autoEl 作为 window 配置属性,它会使你的窗口格式错误。我建议你在组件(窗口的项目)中使用autoEl

new Ext.Window({
title : "iframe",
width : 300,
height: 300,
layout : 'fit',
items : [{
xtype : "component",
autoEl : {
tag : "iframe",
src : "http://www.yahoo.com"
}
}]
}).show();

上面的代码比上面的代码更好

new Ext.Window({
title : "iframe",
width : 300,
height: 300,
layout : 'fit',
autoEl : {
tag : "iframe",
src : "http://www.yahoo.com"
}
}).show();

注意:目前您无法在 iframe 中加载 Google 和 Facebook

关于javascript - Extjs 4 : Create an iFrame Window,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6025814/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com