在点击事件发生的iframe中心jquery ui对话框

时间:2014-06-25 19:22:13

标签: jquery jquery-ui iframe jquery-ui-dialog

我无法在iframe内发生点击事件的情况下打开对话框。我在下面评论了代码,但在点击时无法正常工作。

var def = {
                    autoOpen: false,
                    bgiframe: true,
                    width: 600,
                    height: 'auto',
                    modal: true,
                    dialogClass: 'loader-container',
                    resizable: false,
                    draggable: false,
                    position: 'center',
                    open: function(event, ui) {
                        $('.ui-widget-overlay').show();

                        if (values.options.isWidget) {
                            //$(this).dialog('option', 'position', { my: "center", at: "center", of: event });
                        }
                    },
                    close: function(event, ui) {

                    }
                };

                $(element).dialog(def);

0 个答案:

没有答案