3

我正在尝试使用 _renderItem 函数创建一个自定义的 ui-menu-item 元素,但经过可能的尝试后,我什至无法调用该函数。自动完成功能正在运行,但就像 _renderItem 函数不存在一样。这是我的脚本

<script language="Javascript" type="text/javascript">
    function split( val ) {
    return val.split( /,\s*/ );
} 
function extractLast( term ) {
    return split( term ).pop();
}

$j(document).ready(function() { //START of ready function
$j( "#custom-report" )
.autocomplete({
source: function( request, response ) {
$j.getJSON( "<?=$this->url(array("controller"=>"report", "action"=>"custom-autocomplete"))?>", {
term: extractLast( request.term )
}, response );
},

search: function() {
//Place holder
},

focus: function (event, ui) {
       // Prevent the default focus behavior.
       event.preventDefault();
},

select: function( event, ui ) {
var terms = split( this.value );
terms.pop();
terms.push( ui.item.value );
this.value = terms.join( ", " );
return false;
}
}).data("autocomplete")._renderItem = function (ul, item) {
        return $("<li />")
            .data("item.autocomplete", item)
            .append("This is the text")
            .addClass("tip")
            .attr("desc", "This is the description")
            .appendTo(ul);
    };
}); //END of ready function
</script>

任何人都知道为什么这不起作用?

4

2 回答 2

4

我最终不得不这样做

$.ui.autocomplete.prototype._renderItem = function (ul, item) {
    return $("<li></li>")
     .data("item.autocomplete", item)
    .addClass("tip ui-menu-item")
    .append("<a>" + item.label + "</a>")
    .attr("desc", item.description) /* This is the filed that started the whole thing */
    .attr("role", "presentation")
    .appendTo(ul);
};
于 2013-08-19T20:37:26.203 回答
3

这取决于 jQuery UI 版本,在较新的版本中对象模型发生了变化(参见:http: //jqueryui.com/upgrade-guide/1.10/#autocomplete)。

jQuery UI 站点上的示例基于 jQuery UI 1.10。

1.9 和次要:

.data("autocomplete")._renderItem = function (ul, item) {
        return $("<li />")
            .data("item.autocomplete", item)
            .append("This is the text")
            .addClass("tip")
            .attr("desc", "This is the description")
            .appendTo(ul);
    };

1.10 和下一个:

.data("ui-autocomplete")._renderItem = function (ul, item) {
        return $("<li />")
            .data("ui-autocomplete-item", item)
            .append("This is the text")
            .addClass("tip")
            .attr("desc", "This is the description")
            .appendTo(ul);
    };
于 2013-08-18T10:08:43.400 回答