0

这是我想做的:

在我的博客中,评论显示在使用 iframe的花式框弹出窗口中。(例如:- 对于第 2 号帖子,评论链接打开一个 iframe 花式框comments.php?id=2

我想检查是否在 iframe 中加载了 comments.php,如果没有,则重定向到相应的博客页面。IEpost.php?id=2

我检查了谷歌和其他网站,包括。堆栈溢出。但没有用。请帮忙。(这似乎很容易。但它不起作用http://www.onlineaspect.com/2009/06/10/reading-get-variables-with-javascript/

4

2 回答 2

1

将此脚本放在您的页面中。如果它没有在一个框架中打开,它将重定向到post.php?id=...

<script type="text/javascript">
    if (parent.location==location) {
        location.href = "post.php" + location.search;
    }
</script>
于 2012-09-03T13:39:06.000 回答
0

我在想类似的东西

if ( document.parent.frames.length > 0 ) {
    document.parent.location = "post.php";
}

应该管用

于 2012-09-03T13:38:29.650 回答