重定向到没有框架的新页面

发布于 2024-12-13 13:22:41 字数 215 浏览 3 评论 0原文

我有一个框架网站(我无法更改它),当我使用我们的其他网站之一重定向出我的网站时,

 window.location 

它会将页面插入主框架中,以便其他框架仍然存在。

我不希望这样,页面必须完全更改为不同的网站。我怎样才能做到这一点使用。

javascript/php/jquery

I have a framed site (i cannot change this), when i redirect out of my site using

 window.location 

to one of our other sites it inserts the page into the main frame such that the other frames still exist.

I do not want this, the page must completely change to the different website. How can i do this using.

javascript/php/jquery

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

爱*していゐ 2024-12-20 13:22:41

使用 window.top.location 更改顶部框架(主页)的位置。

Use window.top.location to change the top frame's (main page's) location.

活泼老夫 2024-12-20 13:22:41
window.top.location = "newpage.html";
window.top.location = "newpage.html";
睡美人的小仙女 2024-12-20 13:22:41

我不确定我是否完全理解你,但也许这就是你想要的

 <meta http-equiv="refresh" content="30; URL=http://yoursite.com">

I'm not sure I understand you exactly, but maybe this is what you looking for

 <meta http-equiv="refresh" content="30; URL=http://yoursite.com">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文