3

我有类似 src 的 iframe http://remote-domain.com/,当 src 发生更改时,我需要触发类似的函数iframeSrcChanged()

<iframe id="iframe" src="http://remote-domain.com/" frameborder="0" width="100%" height="100%" ></iframe>

当用户在 iframe 中单击 about-us 时,iframe src 变为

<iframe id="iframe" src="http://remote-domain.com/about-us.html" frameborder="0" width="100%" height="100%" ></iframe>

所以这次我需要触发iframeSrcChanged()功能。

请帮我触发这个问题。

4

1 回答 1

2
var iframe = document.getElementById("iframe");

iframe.addEventListener("DOMAttrModified", function(event) {
    if (event.attrName == "src") {
       // The "src" attribute changed
    }
});

但是,这仅适用于现代浏览器

于 2013-10-21T15:37:07.353 回答