0

我有一个来自 Camtasia 的 test.html,里面有视频。我想在 index.html 的 sencha extjs 窗口中调用它。它应该被称为iframe,怎么做?

4

2 回答 2

3

ExtJS 附带了一个ux 组件。我建议使用这个。您可能还会发现此线程很有帮助

于 2013-07-25T09:25:20.613 回答
0
new Ext.Window({
    title : "iframe",
    width : 300,
    height: 300,
    layout : 'fit',
    items : [{
        xtype : "component",
        autoEl : {
            tag : "iframe",
            src : "path\test.html"
        }
    }]
}).show();
于 2013-07-25T09:06:37.083 回答