如何在加载URL时删除iframe中的加载器掩码

时间:2014-09-22 11:31:47

标签: javascript iframe extjs extjs4.2

我想在加载网址时隐藏iframe的默认加载程序掩码

{
                    xtype: 'uxiframe',
                     listeners: {
                        afterrender: function () {
                                     this.load('https://www.google.pl/images/srpr/logo11w.png');
                        }
                     }
                }

1 个答案:

答案 0 :(得分:1)

items : [{
    xtype : "component",
    autoEl : {
        tag : "iframe",
        src : ...
    },
    listeners: {
        load: {
            element: 'el',
            fn: function () {
                this.parent().unmask();
            }
        },
        render: function () {
            this.up('panel').body.mask("Loading...");
        }
    }

}]