iframe在重定向后仍然显示

时间:2011-10-31 17:16:11

标签: javascript html asp-classic

在我的经典asp应用程序中,我有一个包含2个iframe的页面。 leftframe有一个搜索框。当用户在搜索框中输入内容并按Enter键时 它将用户重定向到结果页面(Redirectpage.asp,它没有任何框架), 重定向到Riderectpage.asp页面后,右边框仍然存在于页面中。 知道如何删除这个右框架。 我们使用javascript进行重定向。这是我的代码。

<script>
    var ServerName = document.location.host;
    document.location.href ='http://' + ServerName + '/' + 'Redirectpage.asp)
</script>

1 个答案:

答案 0 :(得分:2)

您需要通过设置top.location

来重定向外框