私の機能はそのように見えます
mailto_input.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB && $( this ).data( "autocomplete" ).menu.active ) {
event.preventDefault();
}
}).autocomplete({
source: function( request, response ) {
$.getJSON( "core/search.php", {
term: extractLast( request.term )
}, response );
},
search: function(){
// custom minLength
var term = extractLast( this.value );
if ( term.length < 2 ) {
return false;
}
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( "; " );
return false;
}
});
私が達成しようとしているのは、ユーザーがサーバー側のデータのみを選択するように制限することです。つまり、PHP 側からの結果がある場合にのみ、用語を入力ボックスに追加したいと考えています。そうでなければ、この用語のようなサーバーにデータがないことをユーザーに通知します
例のために。
のような単語を追加しないようにしたいsdsf
(この場合、サーバーは のように応答します[]
)。つまり、サーバー側から少なくとも 1 つの提案がある場合にのみ追加します。それ以外の場合はそのままにして、問題についてユーザーに通知します。
それは可能ですか?どうすればこの結果を達成できますか?