我必须检查其他网页(具有相同域名)的iframe中标记的更改。我有这个index.html:
<html>
<body>
<iframe id="open_app" src="/sign.php" width="800" height="600" frameBorder="0" scrolling="no" ></iframe>
</body>
...
这是sign.php中我要检查更改的标记:
<div id="status"></div>
现在,我一直使用MutationObserver来检查网页中标记的更改,但我现在无法使用标识status
来测试iframe标记。我已经看过有关Stackoverflow的所有相关讨论,但没有任何效果。使用MutationObserver验证iframe标记更改的最佳方法是什么?感谢。