gpt4 book ai didi

jQuery UI 自动完成 - that._renderItemData 不是函数

转载 作者:行者123 更新时间:2023-12-01 06:36:34 25 4
gpt4 key购买 nike

我选择了简单的categories example jQuery UI Autocomplete 并将其集成到我的应用程序中。当我开始在搜索栏中输入内容时,Firebug 中出现错误“TypeError: that._renderItemData is not a function”

我也有一个 jQuery,没有冲突。

jQuery(document).ready(function($) {

$.widget( "custom.catcomplete", $.ui.autocomplete, {
_renderMenu: function( ul, items ) {
var that = this,
currentCategory = "";
$.each( items, function( index, item ) {
if ( item.category != currentCategory ) {
ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
currentCategory = item.category;
}
that._renderItemData( ul, item );
});
}
});

$(function() {
var data = [
{ label: "anders", category: "" },
{ label: "andreas", category: "" },
{ label: "antal", category: "" },
{ label: "annhhx10", category: "Products" },
{ label: "annk K12", category: "Products" },
{ label: "annttop C13", category: "Products" },
{ label: "anders andersson", category: "People" },
{ label: "andreas andersson", category: "People" },
{ label: "andreas johnson", category: "People" }
];

$( "#search" ).catcomplete({
delay: 0,
source: data
});

});

我认为这是因为冲突。所以我尝试用 var that = this 替换

 var that = $(this)

var that = jQuery(this)

但这两个选项都会引发相同的错误。如何解决这个冲突?

最佳答案

类别是 jQuery UI 1.9 中的新增内容。我用的是 1.8.3。

使用最新的 1.9.2 jQuery JS 解决了该问题。

关于jQuery UI 自动完成 - that._renderItemData 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14180016/

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