我想从我的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);
}
}
}
}]
});