更改iframe位置时更改窗口位置

时间:2011-03-20 04:23:59

标签: url iframe redirect location parent

有没有办法让它如果iframe中的页面不是src,那么它会将父页面更改为iframe尝试去的网址?像这样:

<script>
function redir() {
    if(document.getElementById("myiframe").src != 'http://www.google.com'){
        window.location = document.getElementById("myiframe").location
    }
}
</script>
<iframe src="http://www.google.com/" id="google" onload="redir()"></iframe>

1 个答案:

答案 0 :(得分:0)

根据同源策略,不允许父页面获取有关iframe内容的任何信息,除非这些页面位于同一个域中。