我正在使用来自here的Jquery UI autocomplete
小工具combobox
。它运行良好,但我需要在组合框(即小部件)中更改值时过滤数据。
我搜索了一些代码,但它没有工作
/* Snip */
select: function (event, ui) {
ui.item.option.selected = true;
if ('function' == typeof (callback = ui.item.option.parentElement.onchange))
callback.apply(this, []);
self._trigger("selected", event, {
item: ui.item.option
});
select.trigger("change");
},
/* Snip */
请告诉我我做错了什么。我正在使用的工作示例here。
我也从一些链接中引用,即http://api.jqueryui.com/autocomplete/#event-change和 http://www.learningjquery.com/2010/06/a-jquery-ui-combobox-under-the-hood但它不适合我。