是否可以在iframe中关闭prettyphoto模式?

Kar*_*rlo 10 iframe jquery lightbox

我正在为lightbox使用prettyphoto jquery插件.当有人点击某个链接时,会打开一个灯箱iframe.在iframe内部有一个应该关闭灯箱的按钮.在文档中有一个代码:

$.prettyPhoto.close();
Run Code Online (Sandbox Code Playgroud)

但不要如何正确使用它.那么,如何关闭iframe内的灯箱.

Ale*_*ton 16

由于它位于iframe中,因此无法访问运行prettyPhoto插件的相同范围.

假设iframe位于同一个域中,您可以向上遍历父节点,并在那里调用该函数.

window.parent.$.prettyPhoto.close(); 可能会做的伎俩.