从父页面重定向iframe

时间:2020-04-19 03:47:16

标签: javascript html

我有一个疑问,如何从他的父页面重定向iframe? 我有这个

if(($mypassword == "home.guava")) {
    echo "<script>window.top.location.href = \"teste\";</script>";
}

附在iframe页面上的我的php文件中。但是我需要的是这样的东西,它将从父页面重定向iframe!

谢谢大家:D

1 个答案:

答案 0 :(得分:0)

如果脚本位于父级中,则不必有问题。

if(($mypassword == "home.guava")) {
    echo "<script>document.getElementsByTagName('iframe')[0].src = \"teste\";</script>";
}


例子:

<body>
  <iframe id="one" src="url"></iframe>
  <iframe id="two" src="url"></iframe>
</body>
// Parent to child:
document.getElementsById('one').src = url;

// Child to parent
window.parent.location.href = url;

// Child to other child
window.parent.document.getElementById('two').src = url;

// Current (Child or Parent)
window.location.href = url;