我已经使用 JQuery 实现了自动完成,当我选择数据时,它会存储在结果表中,选择后,我需要清除我无法清除的自动完成文本框。搜索相同并在选择后在 Jquery Autocomplete 中得到了这个 Clear text 框,但我不知道在哪里放置它,而且在萤火虫中,我在函数(事件,ui)处遇到错误。请帮助...我的代码如下。
$(function() {
function log( message ) {
$( "<div>" ).text( message ).prependTo( "#log" ).click(function(o){
$(this).remove();
});
$( "#log" ).scrollTop( 0 );
}
$( "#poolName" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "/DataWeb/getPoolName",
type : 'post',
dataType: 'json',
data: { name_startsWith: request.term },
success: function( data ) {
console.log(data);
response( $.map( data, function( item ) {
return {
label: item.poolName,
value: item.poolName
}
}));
}
});
},
minLength: 1,
select: function( event, ui ) {
log( ui.item ?
ui.item.label :
"Nothing selected, input was " + this.value);
},
open: function() {
$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
},
close: function() {
$( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
}
});
});