Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我想使用 jQuery-ui 自动完成插件来获取 json 格式的排序数据,这样我就可以创建自己的自定义 UI。自定义 UI 就像附加的示例图像中的那样。为此,我需要插件不显示其默认列表。
谢谢,高拉夫
在自动完成中,有一个名为 _renderItem 的函数。
_renderItem: function( ul, item) { return $( "<li></li>" ) .data( "item.autocomplete", item ) .append( "<a>" + item.label + "</a>" ) .appendTo( ul ); },
所以,你可以用你自己的替换那个 _renderItem。