我在我的应用中使用此代码(覆盖_renderItem
);
var ac: JQuery = $("<input/>");
ac.addClass(this._autocompleteId);
ac.appendTo(container);
ac.autocomplete(options);
var renderItem = (ul: JQuery, item: Label) => {
return $("<li></li>")
.data("item.autocomplete", item)
.append($("<a></a>").html(item.label))
.appendTo(ul);
};
ac.data("autocomplete")._renderItem = renderItem;
问题是ac.data("autocomplete")
是undefined
。我不知道为什么,因为我之前使用过此代码。我将JQuery 1.8
和JQueruUI 1.9
个库更新到最新版本后出现了错误...
[编辑]
好的,我找到了解决方法。在新版JQueryUI
中,autocomplete
已更改为ui-autocomplete
。所以它有效:
ac.data("ui-autocomplete")._renderItem = renderItem;
我留下这篇文章,因为将来有人可能需要这个:)
答案 0 :(得分:0)
好的,我找到了解决方法。在新版JQueryUI
中,autocomplete
已更改为ui-autocomplete
。所以它有效:
ac.data("ui-autocomplete")._renderItem = renderItem;