如何在iframe外面打开一个对话框

时间:2014-01-27 19:39:04

标签: jquery user-interface iframe dialog

我在iframe中调用jQueryUI对话框,如下所示:

enter image description here

但我需要iframe之外的对话框(如window.parent ----> open dialog或类似的东西)。

1 个答案:

答案 0 :(得分:6)

首先,如果是这种情况,您需要在parent初始化对话框,autoOpen设置为false

$("#dialog").dialog({ autoOpen: false });

通过在表达式之前添加parent.,可以从iframe中打开它:

parent.$("#dialog").dialog("open");