我使用beforeClose方法调用jquery对话框确认框。我在关闭prettyphoto窗口时遇到问题。有人知道如何从对话窗口中做到这一点吗?
代码示例:
$(function(){
$("#dialogID").dialog({
open: function(event, ui){
},
bgiframe: true,
autoOpen: false,
closeOnEscape: false,
draggable: false,
show: "drop",
hide: "drop",
zIndex: 10000,
modal: true,
buttons: {
'Confirm': function(){
$.prettyPhoto.doClose();
$(this).dialog("close");
},
'No' : function () {
$(this).dialog("close");
}
}
});
});
一切正常,但我无法调用关闭功能。欢迎任何帮助。感谢。
答案 0 :(得分:0)
仔细查看文档,close函数只是close()
$.prettyPhoto.close();