Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个来自 Camtasia 的 test.html,里面有视频。我想在 index.html 的 sencha extjs 窗口中调用它。它应该被称为iframe,怎么做?
ExtJS 附带了一个ux 组件。我建议使用这个。您可能还会发现此线程很有帮助
new Ext.Window({ title : "iframe", width : 300, height: 300, layout : 'fit', items : [{ xtype : "component", autoEl : { tag : "iframe", src : "path\test.html" } }] }).show();