gpt4 book ai didi

javascript - 使用 jQuery 动态检测 iframe?

转载 作者:行者123 更新时间:2023-11-28 11:22:34 25 4
gpt4 key购买 nike

为了检查 iFrame 当前是否打开,您可以使用:

if (window!=window.top) { /* I'm in a frame! */ }

但是如果我想在 iFrame 打开时收到警报该怎么办?如何让 JS 自动检测当前页面打开或插入 DOM 中的 iFrame?

最佳答案

使用 JQuery,您可以使用以下代码:

$('body').on('DOMNodeInserted', 'iframe', function(e) {
console.log("Iframe inserted into document");
});

// To test it
$('button').click(function() {
$('body').append('<iframe></iframe>')
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button>Add iframe</button>
<hr />

关于javascript - 使用 jQuery 动态检测 iframe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30598602/

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