JQuery を使用してオートコンプリートを実装しました。データを選択すると結果テーブルに格納されます。選択後、オートコンプリート テキストボックスをクリアする必要がありますが、これはできません。同じものを検索し、選択後にJquery Autocompleteでこのクリアテキストボックスを取得しましたが、どこに配置すればよいかわかりませんでした。助けてください...私のコードは次のとおりです。
$(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" );
}
});
});