10

我正在使用jQuery UI 自动完成插件(1.8 版),我想自定义显示建议的方式。具体来说,我不仅想显示一些文本,还想显示一个图标。但是,当我发送 <img> 标记时,它只会在结果列表中呈现为纯文本。

有什么方法可以改变这种行为吗?或者,您能否建议一种不同的方式在返回的结果中包含图像并让它们显示在建议中?

4

1 回答 1

13

Taken from here

$("#search_input").autocomplete({source: "/search",
                                 minLength: 3,
                                 select: function (event, ui) {
                                     document.location = ui.item.url;
                                 }
})
.data("autocomplete")._renderItem = function (ul, item) {
//As per recent documemtation above line should be 
//.autocomplete( "instance" )._renderItem = function (ul, item) {
    return $('<li class="ui-menu-item-with-icon"></li>')
        .data("item.autocomplete", item)
        .append('<a><span class="' + item.type + '-item-icon"></span>' + item.label + '</a>')
        .appendTo(ul);
};

And the CSS:

.ui-menu .ui-menu-item-with-icon a {
  padding-left: 20px;
  
}
span.group-item-icon,
span.file-item-icon {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-left: -16px;
}
span.group-item-icon {
  background: url("/image/icons/group.png") no-repeat left 4px;
}
span.product-item-icon {
  background: url("/image/icons/product.png") no-repeat left 7px;
}
于 2010-10-12T12:04:32.060 回答