我有一个疑问,如何从其父页面重定向 iframe?我有这个if(($mypassword == "home.guava")) {
echo "<script>window.top.location.href = \"teste\";</script>";
}在我附加到 iframe 页面的 php 文件中。但我需要的是这样的东西,它将从父页面重定向 iframe!谢谢大家:D
1 回答
狐的传说
TA贡献1804条经验 获得超3个赞
如果脚本位于父级中,则不必遇到问题。
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;
- 1 回答
- 0 关注
- 108 浏览
添加回答
举报
0/150
提交
取消