4

我正在尝试扩展自动完成功能,以便在选择项目时显示辅助标签。例如,给定一个显示项目的自动完成功能,项目名称将显示在包含代码的输入框旁边的 span 标记中。

查看自动完成源代码,我看到过滤值的下拉列表是使用 jQuery 菜单小部件呈现的,并且当在文本框中键入特定键时,会在菜单小部件上调用不同的函数。例如,当按下 enter 和 tab 时,将调用菜单小部件的 select() 函数。

配置菜单小部件,以便在引发选定事件时,自动完成小部件获取选定项目并引发其自己的选择事件,然后在文本框中显示项目值。

所以,给定以下代码

(function ($, undefined) {
    $.widget('xyz.autocompletePlus', $.ui.autocomplete, {
        options: {
            selectedDescriptor: null
        },

        _create: function () {
            $.ui.autocomplete.prototype._create.call(this, this.options);

            if (!this.options.selectedDescriptor) {
                $("<span class='ui-xyz-autocomplete-label'>").insertAfter(this.element).html('Nothing selected');
            }
        },

        _setOption: function (name, value) {
            $.ui.autocomplete.prototype._setOption.call(this, arguments);
        },

        destroy: function () {
            $.ui.autocomplete.prototype.destroy.call(this);
            $.Widget.prototype.destroy.call(this);
        }
    });
} (jQuery));

如何挂钩在选择项目时调用的代码,以便我可以插入自己的逻辑?这个想法是,而不是执行

if ( false !== self._trigger( "select", event, { item: item } ) ) {
   self.element.val( item.value );
}

我想要类似的东西(不是实际的代码,但可以理解)

if ( false !== self._trigger( "select", event, { item: item } ) ) {
   self.element.val( item.value );
   this.options.selectedDescriptor.html( item.description);
}

如果我没有继承而是将自动完成封装在一个新的小部件中,我可以绑定到自动完成选择事件并做我的事情,但是继承我很难过。

编辑:

添加了我需要替换或挂钩的自动完成源。它从 jquery-ui-1.8.22.js 的第 6137 行开始

this.menu = $( "<ul></ul>" )
   ...
   ...
   .menu({
      focus: function( event, ui ) {
         ...
         ...
         }
      },
      selected: function( event, ui ) {
         var item = ui.item.data( "item.autocomplete" ),
            previous = self.previous;

         // only trigger when focus was lost (click on menu)
         if ( self.element[0] !== doc.activeElement ) {
            self.element.focus();
            self.previous = previous;
            // #6109 - IE triggers two focus events and the second
            // is asynchronous, so we need to reset the previous
            // term synchronously and asynchronously :-(
            setTimeout(function() {
               self.previous = previous;
               self.selectedItem = item;
            }, 1);
         }

         if ( false !== self._trigger( "select", event, { item: item } ) ) {
            self.element.val( item.value );
         }
         // reset the term after the select event
         // this allows custom select handling to work properly
         self.term = self.element.val();

         self.close( event );
         self.selectedItem = item;
      },
      ...
      ...

谢谢。

4

1 回答 1

0

您要扩充的代码位于私有事件处理程序中。继承确实对此无济于事。

但是,您可以在_create()方法中取消绑定现有处理程序并注册一个新的处理程序来执行您想要的操作。不幸的是,这涉及复制原始处理程序的代码:

_create: function() {
    $.ui.autocomplete.prototype._create.call(this, this.options);

    if (!this.options.selectedDescriptor) {
        this.options.selectedDescriptor
            = $("<span class='ui-xyz-autocomplete-label'>")
                .insertAfter(this.element).html("Nothing selected");
    }
    this.menu.element.off("menuselected")
                     .on("menuselected", function(event, ui) {
        var item = ui.item.data("item.autocomplete");
        if (false !== this._trigger("select", event, { item: item })) {
            this.element.val(item.value);
        }
        this.close(event);
        this.previous = this.element.val();
        // only trigger when focus was lost (click on menu)
        var doc = this.element[0].ownerDocument;
        if (this.element[0] !== doc.activeElement) {
            this.element.focus();
        }
    });
}
于 2012-07-28T05:37:52.917 回答