jsのオートコンプリートに問題があります。ここで、次のコードが適切に機能します。
$(function(){
$( "#txtAuto" ).autocomplete({
source: ["Choice1","Choice2"],
minLength:2
});
});
しかし、これをテストのために以下のコードに変更しても、選択肢がありません。
$(function(){
$( "#txtAuto" ).autocomplete({
source: function( request, response ){
$.ajax({
url: "test.ewd",
success: function(data){
var res=data.match('\\[[^\\]]*]');
return ["Choice1", "Choice2"];
}
});
},
minLength:2
});
});
どこで間違えたのか教えてくれませんか?