jQuery Thickbox:从 ​​iframe 页面内容事件中关闭 lightbox

发布于 2024-07-24 04:55:39 字数 156 浏览 5 评论 0原文

我已经在我的页面中实现了 jquery 厚框,以在 light bix 中显示另一个页面内容。我使用厚框的 iFrame 模式来执行此操作。现在我在页面中有一个 asp.net 链接按钮,该按钮显示在灯箱。 我想在单击此链接(位于内页中)时从客户端关闭灯箱。我必须使用哪个功能? 有什么建议吗?

I have implemented the jquery thick box in my page to show another page content in the light bix.I used the iFrame mode of thick box to do this.Now i have a asp.net link button in the page which is being show in the light box. I want to close the light box from client side when this link(in the inner page) is clicked .Which function i have to use ? Any advice ?

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

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

发布评论

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

评论(1

裂开嘴轻声笑有多痛 2024-07-31 04:55:39

用于关闭厚盒的方法是 tb_remove()

要从 iframe 内容调用它,您只需调用 iframe 父级的方法即可。

所以

parent.tb_remove()

应该解决这个问题。

只需在链接上添加事件(嵌入似乎更简单)

<a href="#" onClick="javascript:window.parent.tb_remove()"> ... </a>

The method used to close the thickbox is tb_remove()

To call it from an iframed content, you just have to call the method for the iframe parent.

So

parent.tb_remove()

Should do the trick.

Just add the event on your link ( embed seem the easier way )

<a href="#" onClick="javascript:window.parent.tb_remove()"> ... </a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文