将事件侦听器添加到iframe

时间:2014-02-21 09:06:42

标签: javascript iframe extjs listener

我想从我的extJS应用程序中监听iframe window.location或document.src的更改。

所以我添加了组件的监听器,记录了组件的内容并找到了内容 - 以及document.src。

我不知道:如何监听document.src字符串的更改?

Ext.widget('window',{
    layout: 'fit',
    items : [{
        xtype : "component",
        autoEl : {
            tag : "iframe",
            src : helpURI.replace('EN',Message.LOCALE.toUpperCase())
        },
        listeners: {
            load: {
                element: 'el',
                fn: function () {
                    this.parent().unmask();
                    console.log(this.dom.contentDocument.src);
                }
            }
        }
    }]
});

0 个答案:

没有答案