jquery colorbox 在弹出窗口中打开链接

发布于 2024-11-08 15:05:14 字数 352 浏览 0 评论 0原文

我正在使用 Jquery colorbox 来实现弹出窗口。

<script>
$(document).ready(function(){
    $.colorbox({innerWidth:"600px", innerHeight:"520px", iframe:true,href:"/notice.php"}); 
});
</script>

在弹出的php文件中,有一些链接到其他页面的链接。当我单击这些链接时,新页面将显示在弹出窗口中。 我想在基页中打开新页面,但不想打开小弹出窗口。

有什么建议吗?提前致谢!

大学教师

I'm using Jquery colorbox to implement a popup windows.

<script>
$(document).ready(function(){
    $.colorbox({innerWidth:"600px", innerHeight:"520px", iframe:true,href:"/notice.php"}); 
});
</script>

In the popup php file, there are some links which linked to other pages. When I click those links, the new page will displayed in the popup window. I want to open the new page in the base page but not the small popup window.

Any Suggestions? Thanks in advance!

Don

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

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

发布评论

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

评论(1

记忆で 2024-11-15 15:05:14

那是因为你有

iframe:true

它必须是

iframe:false

iframe 基本上只是文档内的另一个窗口框架,并且行为非常像浏览器选项卡。这就是您的页面在弹出窗口中打开的原因。

That's because you have

iframe:true

It must be

iframe:false

An iframe is basically just another window frame inside a document, and acts pretty much like a browser tab. That's why your page is opening in the popup.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文