gpt4 book ai didi

jquery - 继承 jQuery Autocomplete 时如何 Hook 到所选项目

转载 作者:行者123 更新时间:2023-12-01 00:32:13 25 4
gpt4 key购买 nike

我正在尝试扩展自动完成功能,以便在选择某个项目时显示辅助标签。例如,给定显示项目的自动完成功能,项目名称将显示在包含代码的输入框旁边的 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));

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

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);
}

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

编辑:

添加了我需要替换或 Hook 的自动完成源。它从 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;
},
...
...

谢谢。

最佳答案

您想要增强的代码驻留在私有(private)事件处理程序中。继承确实对此没有多大帮助。

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

_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();
}
});
}

关于jquery - 继承 jQuery Autocomplete 时如何 Hook 到所选项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11697902/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com