gpt4 book ai didi

javascript - 如何在 iframe src 更改时触发功能?

转载 作者:可可西里 更新时间:2023-11-01 13:34:52 25 4
gpt4 key购买 nike

我有带有 src 的 iframe,例如 http://remote-domain.com/,每当 src 被更改时,我需要触发一个函数,例如 iframeSrcChanged()

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

当用户在 iframe 中点击关于我们时,iframe src 会变成

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

所以这次我需要触发iframeSrcChanged()函数。

请帮我触发这个问题。

最佳答案

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

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

但是这只适用于现代浏览器

关于javascript - 如何在 iframe src 更改时触发功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19498767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com