1
(function ($) {
    $.fn.extend({
        leanModal : function (options) {
            var defaults = {
                top : 100,
                overlay : 0.5,
                closeButton : null
            };
            var overlay = $("<div id='lean_overlay'></div>");
            $("body").append(overlay);
            options = $.extend(defaults, options);
            return this.each(function () {
                var o = options;
                $(this).click(function (e) {
                    var modal_id = $(this).attr("href");
                    //$("#lean_overlay").click(function () {
                    //  close_modal(modal_id)
                    //});
                    $(o.closeButton).click(function () {
                        close_modal(modal_id)
                    });
                    var modal_height = $(modal_id).outerHeight();
                    var modal_width = $(modal_id).outerWidth();
                    $("#lean_overlay").css({
                        "display" : "block",
                        opacity : 0
                    });
                    $("#lean_overlay").fadeTo(200, o.overlay);
                    $(modal_id).css({
                        "display" : "block",
                        "position" : "fixed",
                        "opacity" : 0,
                        "z-index" : 11000,
                        "left" : 50 + "%",
                        "margin-left" :  - (modal_width / 2) + "px",
                        "top" : o.top + "px"
                    });
                    $(modal_id).fadeTo(200, 1);
                    e.preventDefault()
                })
            });
            function close_modal(modal_id) {
                $("#lean_overlay").fadeOut(200);
                $(modal_id).css({
                    "display" : "none"
                })
            }
        }
    })
})(jQuery);

这是来自leanModal插件 - http://leanmodal.finelysliced.com.au/

我应该如何在上述插件之外调用这个 close_modal() 函数?我想从 ajax 调用的成功回调中关闭弹出对话框。ajax 调用在外部 js 函数中。

4

2 回答 2

3

只要您不介意更改供应商提供的源代码(如您在最初的问题中给出的那样),以下更改应该可以工作(请注意,这还没有经过全面测试,但它应该可以帮助您完成大部分工作) :

(function ($) {
$.fn.extend({
    leanModal: function (method) {
        var methods = {
            init: function (options) {
                return this.each(function () {
                    var o = options;
                    $(this).click(function (e) {
                        var modal_id = $(this).attr("href");
                        //$("#lean_overlay").click(function () {
                        //  close_modal(modal_id)
                        //});
                        $(o.closeButton).click(function () {
                            close_modal(modal_id)
                        });
                        var modal_height = $(modal_id).outerHeight();
                        var modal_width = $(modal_id).outerWidth();
                        $("#lean_overlay").css({
                            "display": "block",
                            opacity: 0
                        });
                        $("#lean_overlay").fadeTo(200, o.overlay);
                        $(modal_id).css({
                            "display": "block",
                            "position": "fixed",
                            "opacity": 0,
                            "z-index": 11000,
                            "left": 50 + "%",
                            "margin-left": -(modal_width / 2) + "px",
                            "top": o.top + "px"
                        });
                        $(modal_id).fadeTo(200, 1);
                        e.preventDefault()
                    })
                });
            },
            close: function (modal_id) {
                close_modal(modal_id);
            }
        };

        if (methods[method]) {
            return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
        } else if (typeof method === 'object' || !method) {
            return methods.init.apply(this, arguments);
        } else {
            $.error('Method ' + method + ' does not exist on jQuery.leanModal');
        }  

        var defaults = {
            top: 100,
            overlay: 0.5,
            closeButton: null
        };            
        var overlay = $("<div id='lean_overlay'></div>");
        $("body").append(overlay);
        options = $.extend(defaults, options);

        function close_modal(modal_id) {
            $("#lean_overlay").fadeOut(200);
                $(modal_id).css({
                    "display": "none"
                })
            }
        }
    })
})(jQuery);

然后,您将能够像这样调用您的代码:

     $('#foo').leanModal(); //Initialise

...

     $('#foo').leanModal('close'); //Close
于 2012-10-02T16:47:59.820 回答
0

这个模块构造的要点是避免发布一些变量(包括函数)。

因此,您无法访问返回对象中未引用的内容。

阅读有关构造的内容。

在您的情况下,如果您不想更改插件以在返回的对象中移动函数,最简单的可能是

$("#lean_overlay").fadeOut(200);
$(modal_id).css({
    "display" : "none"
})

其中 modal_id 是href元素的属性。

于 2012-10-02T16:17:13.640 回答