1 "video" : {
2 render : function(panel, eOpts) {
3 // 因为iframe在video
4 // panel渲染的时候就已经完全移动到video中了,所以document中就不再有iframe这个元素了
5 // video关闭的时候也会自动把panel中的所有元素销毁,所以如果我们还想使用iframe元素,只有再重新手动创建并添加到body中
6 var container = Ext.getBody();
7 var eleMessage = ‘ <iframe id="lmsVideo" style="position:absolute;" overflow="auto" scrolling="auto" frameborder="0" height="100%" width="100%"/>‘;
8 Ext.DomHelper.append(container, eleMessage);
9 }
10 }
video是自定义的一个panel,并使用contentEl引用了iframe。
Extjs4使用iframe注意事项,布布扣,bubuko.com
时间: 2024-10-13 22:27:22