iframe 位置更改时更改窗口位置
有没有办法让 iframe 内的页面不是 src,那么它会将父页面更改为 iframe 试图访问的 url?像这样的东西:
<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>
Is there a way to make it so that if the page inside an iframe is not the src, then it will change the parent page to the url the iframe is trying to go to? Something like this:
<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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以。
根据同源策略,不允许父页面获取有关 iframe 中发生的情况的任何信息,除非页面位于同一域中。
No.
Per the same-origin policy, the parent page is not allowed to get any information about what's going in the iframe, unless the pages are on the same domain.