无法多次重写 jQuery UI 自动完成 renderItem 方法
它会在找到的第一个自动完成中正确覆盖,但对其余部分不执行任何操作。 相反,它会加载原始的 _renderitem 方法,您可以在 https: //github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.autocomplete.js#L449。
$(".someClassWithMultipleItemsOnDOM").autocomplete({
delay:500,
minLength:2,
source:path"
.....
}).data( "autocomplete" )._renderItem = function( ul, item ) {
提前致谢
It overrides properly in the first autocomplete found, but do nothing with the rest.
Instead it loads the original _renderitem method that you can see at https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.autocomplete.js#L449.
$(".someClassWithMultipleItemsOnDOM").autocomplete({
delay:500,
minLength:2,
source:path"
.....
}).data( "autocomplete" )._renderItem = function( ul, item ) {
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题有一个解决方法:
There's a workaround for this problem:
您可以覆盖 _renderItem
You can override _renderItem