我有一个iFrame,页面上有几个链接,位于iFrame中。
从外部文档中,如何判断iFrame中的页面是否已被重定向?
<body>
<script>
if(somePage.html has been redirected) {
//do something
}
</script>
<iframe src="somePage.html">...</iframe>
</body>
答案 0 :(得分:0)
为iframe添加 id 并尝试在load()
处理程序中添加document.ready()
函数:
$(document).ready(function () {
$("iframeID").load(function () {
//iframe loaded
alert(this.contentWindow.location);
});
});