覆盖jQueryUI对话框小部件内部方法

时间:2013-11-13 13:23:15

标签: jquery jquery-ui

我想覆盖jQueryUI对话框小部件内部方法。在这个例子中,它只添加“console.log('button');”到原来的功能
这是我的代码:

$.extend($.ui.dialog.prototype, 
    {   
        _createButtons: function() {
            console.log('button');
            var e = this, i = this.options.buttons;
            return this.uiDialogButtonPane.remove(), this.uiButtonSet.empty(), t.isEmptyObject(i) || t.isArray(i) && !i.length ? (this.uiDialog.removeClass("ui-dialog-buttons"), undefined) : (t.each(i, function(i, s) {
                var n, a;
                s = t.isFunction(s) ? {click: s,text: i} : s, s = t.extend({type: "button"}, s), n = s.click, s.click = function() {
                    n.apply(e.element[0], arguments)
                }, a = {icons: s.icons,text: s.showText}, delete s.icons, delete s.showText, t("<button></button>", s).button(a).appendTo(e.uiButtonSet)
            }), this.uiDialog.addClass("ui-dialog-buttons"), this.uiDialogButtonPane.appendTo(this.uiDialog), undefined)
        }
    }
);

我收到此错误:“未捕获的ReferenceError:t未定义”
这有什么不对?或者执行任务的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

所以,很简单:jquery_ui.js中的t用于jQuery

var t = $;