Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的页面中实现了 jquery 厚框以在 light bix 中显示另一个页面内容。我使用厚框的 iFrame 模式来执行此操作。现在我在页面中有一个 asp.net 链接按钮,该按钮显示在灯箱。单击此链接(在内部页面中)时,我想从客户端关闭灯箱。我必须使用哪个功能?有什么建议吗?
用于关闭厚盒的方法是 tb_remove()
要从 iframe 内容调用它,您只需调用 iframe 父级的方法。
所以
parent.tb_remove()
应该做的伎俩。
只需在您的链接上添加事件(嵌入似乎更简单)
<a href="#" onClick="javascript:window.parent.tb_remove()"> ... </a>