jQuery UIオートコンプリートの単純なカテゴリの例を取り上げて、アプリケーションに統合しました。検索バーに入力し始めると、Firebugで「TypeError:that._renderItemData is notafunction」というエラーが表示されます。
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
});
});
これは紛争のせいだと思います。だから私はvarthat=thisを置き換えてみました
var that = $(this)
と
var that = jQuery(this)
しかし、両方のオプションが同じエラーをスローしています。この競合を解決するにはどうすればよいですか?