jquery colorbox 在弹出窗口中打开链接
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那是因为你有
它必须是
iframe 基本上只是文档内的另一个窗口框架,并且行为非常像浏览器选项卡。这就是您的页面在弹出窗口中打开的原因。
That's because you have
It must be
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.